ember.js: 1.12 instanceInitializer deferReadiness does not work
The example in http://emberjs.com/blog/2015/05/13/ember-1-12-released.html mentions that deferReadiness is available on the instance, but it is not.
// app/instance-initializers/sleep.js
export function initialize(application) {
application.deferReadiness();
// Wait 3s before continuing to boot the app
Ember.run.later(application, 'advanceReadiness', 3000);
}
export default {
name: 'sleep',
initialize: initialize
};
How can we use deferReadiness in 1.12?
About this issue
- Original URL
- State: closed
- Created 9 years ago
- Comments: 30 (10 by maintainers)
Commits related to this issue
Most upvoted comments

+1
tomdale on Jul 2, 2015