Fix search
In search there was a check on 'auth' in the view and we no longer inject auth into views. That's why the check needs to be done on the controller. The other thing is that slash breaks the URL currently, so this commit also changes slash in the search phrase into %2F character.
This commit is contained in:
parent
29513b744d
commit
f7f274f5d5
|
@ -77,7 +77,7 @@ Controller = Ember.ArrayController.extend
|
|||
searchFor: (phrase) ->
|
||||
Ember.run.cancel(@searchLater) if @searchLater
|
||||
@searchLater = Ember.run.later(this, (->
|
||||
@transitionTo('main.search', phrase)
|
||||
@transitionTo('main.search', phrase.replace(/\//g, '%2F'))
|
||||
), 500)
|
||||
|
||||
noReposMessage: (->
|
||||
|
|
|
@ -14,7 +14,7 @@ Route = MainTabRoute.extend
|
|||
@controllerFor('repos').addObserver('firstObject', this, 'currentRepoDidChange')
|
||||
|
||||
model: (params) ->
|
||||
params.phrase
|
||||
params.phrase.replace(/%2F/g, '/')
|
||||
|
||||
deactivate: ->
|
||||
@_super.apply(this, arguments)
|
||||
|
|
|
@ -8,7 +8,7 @@ View = Ember.View.extend
|
|||
classRecent: (->
|
||||
if @get('tab') == 'recent'
|
||||
'active'
|
||||
else if @get('tab') == 'search' && @auth.get('signedIn')
|
||||
else if @get('tab') == 'search' && @get('controller').auth.get('signedIn')
|
||||
'hidden'
|
||||
).property('tab')
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user