Make showMyRepositories action play nicely with URLs

This commit is contained in:
Piotr Sarnacki 2015-03-19 12:08:39 +01:00
parent ea9e9d81c1
commit b703665fe5

View File

@ -11,7 +11,13 @@ Controller = Ember.ArrayController.extend
@activate('running')
showMyRepositories: ->
@activate('owned')
# this is a bit of a hack. I don't want to switch URL for 'running'
# so depending on current state I'm either just switching back or
# redirecting
if @get('tab') == 'running'
@activate('owned')
else
@transitionToRoute('main.repositories')
tabOrIsLoadedDidChange: (->