Fix sidebar for logged in users
This commit is contained in:
parent
661b16255b
commit
8c07e4ec7a
|
@ -17,6 +17,6 @@
|
|||
</aside>
|
||||
</div>
|
||||
|
||||
<footer {{bind-attr class="auth.signedIn:hidden"}}>
|
||||
<footer {{bind-attr class="view.sidebarVisible:visible:hidden"}}>
|
||||
{{render "footer"}}
|
||||
</footer>
|
||||
|
|
|
@ -3,8 +3,4 @@
|
|||
View = BasicView.extend
|
||||
layoutName: 'layouts/landing-page'
|
||||
|
||||
sidebarVisible: (->
|
||||
@get('auth.signedIn') && !@get('controller.ownersPage')
|
||||
).property('auth.signedIn', 'controller.ownersPage')
|
||||
|
||||
`export default View`
|
||||
|
|
|
@ -4,4 +4,8 @@ View = Ember.View.extend
|
|||
layoutName: 'layouts/home'
|
||||
classNames: ['main']
|
||||
|
||||
sidebarVisible: (->
|
||||
@get('controller.auth.signedIn') && !@get('controller.ownersPage')
|
||||
).property('controller.auth.signedIn', 'controller.ownersPage')
|
||||
|
||||
`export default View`
|
||||
|
|
Loading…
Reference in New Issue
Block a user