Fix repository hint on accounts pages.

Accounts and the profile are currently separate controllers, so
whenever you switched the account, the message would be hidden.
This commit is contained in:
Mathias Meyer 2014-05-06 10:10:36 +02:00
parent 2e6e896c74
commit 2fa2ea533b

View File

@ -10,3 +10,11 @@ Travis.AccountIndexController = Em.Controller.extend
toggle: (hook) ->
hook.toggle()
showPrivateReposHint: (->
Travis.config.show_repos_hint == 'private'
) .property()
showPublicReposHint: (->
Travis.config.show_repos_hint == 'public'
) .property()