Make showMyRepositories action play nicely with URLs
This commit is contained in:
parent
ea9e9d81c1
commit
b703665fe5
|
@ -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: (->
|
||||
|
|
Loading…
Reference in New Issue
Block a user