Start running poll whenever isSyncing changes
This ensures that timing is not important, ie. if user data is refreshed later, we can still start running poll() if user is syncing.
This commit is contained in:
parent
a64c800423
commit
e0865756d1
|
@ -20,11 +20,10 @@ require 'travis/model'
|
|||
value
|
||||
).property('login', '_name')
|
||||
|
||||
init: ->
|
||||
@_super()
|
||||
|
||||
isSyncingDidChange: (->
|
||||
Ember.run.next this, ->
|
||||
@poll() if @get('isSyncing')
|
||||
).observes('isSyncing')
|
||||
|
||||
urlGithub: (->
|
||||
"https://github.com/#{@get('login')}"
|
||||
|
@ -66,7 +65,6 @@ require 'travis/model'
|
|||
self = this
|
||||
Travis.ajax.post('/users/sync', {}, ->
|
||||
self.setWithSession('isSyncing', true)
|
||||
self.poll()
|
||||
)
|
||||
|
||||
poll: ->
|
||||
|
|
Loading…
Reference in New Issue
Block a user