deferReadinesspublic
Use this to defer readiness until some condition is true.
Example:
1 2 3 4 5 6 7 8 9 | let App = Ember.Application.create(); App.deferReadiness(); // Ember.$ is a reference to the jQuery object/function Ember.$.getJSON( '/auth-token' , function (token) { App.token = token; App.advanceReadiness(); }); |
This allows you to perform asynchronous setup logic and defer booting your application until the setup has finished.
However, if the setup requires a loading UI, it might be better to use the router for this purpose.
Please login to continue.