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:
Piotr Sarnacki 2014-06-19 14:39:12 +02:00
parent a64c800423
commit e0865756d1

View File

@ -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: ->