Hide recent tab if we're searching

This commit is contained in:
Piotr Sarnacki 2015-02-11 12:45:03 +01:00
parent 4ffd33c087
commit 9c149313f7
2 changed files with 7 additions and 1 deletions

View File

@ -50,6 +50,9 @@
#tab_search:not(.active)
display: none
#tab_recent.hidden
display: none
#tab_owned
display: none
#tab_owned.display

View File

@ -6,7 +6,10 @@ View = Ember.View.extend
currentUserBinding: 'controller.currentUser.id'
classRecent: (->
'active' if @get('tab') == 'recent'
if @get('tab') == 'recent'
'active'
else if @get('tab') == 'search' && @auth.get('signedIn')
'hidden'
).property('tab')
classOwned: (->