Created
December 1, 2014 19:21
-
-
Save acnalesso/d780be9d67216eb9b8e3 to your computer and use it in GitHub Desktop.
Ember.run.currentRunLoop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ember.run.currentRunLoop | |
// undefined | |
Ember.run(function() { | |
console.log(Ember.run.currentRunLoop); | |
}); | |
// DeferredActionQueues {queues: Object, queueNames: Array[6], options: Object, schedule: function, invoke: function…} | |
// You can run that in your browser and have a better look at it. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment