Removed race condition.

This commit is contained in:
Martin Edenhofer 2014-06-14 13:58:20 +02:00
parent f12519364d
commit 25c3bc157d
2 changed files with 3 additions and 3 deletions

View file

@ -88,7 +88,7 @@ class App.Auth
# refresh default collections
if data.collections
App.Event.trigger 'resetCollection', data.collections
App.Collection.resetCollections( data.collections )
# trigger auth ok with new session data
App.Event.trigger( 'auth', data.session )

View file

@ -19,10 +19,10 @@ class App.Collection
_instance ?= new _collectionSingleton
_instance.reset( args )
@resetCollection: ( args ) ->
@resetCollections: ( args ) ->
if _instance == undefined
_instance ?= new _collectionSingleton
_instance.resetCollection( args )
_instance.resetCollections( args )
class _collectionSingleton extends Spine.Module
@include App.LogInclude