I'm loading my whole application in parts, so somewhere at the beginning during this init process I create my app
window.Sp = Em.Application.create( {
VERSION: '1.0.0',
autoinit: false
}) ;
Then I start loading other things, like router settings. And when this is ready I called initialize
Sp.initialize() ;
This worked fine, until I donwloaded the most recent ember.js from https://github.com/emberjs/ember.js
It turned out that 'autoinit' as a configuration option is removed. Why? But more importantly what do I have to do if I want to call 'initialize' manually ?
I already found one way to hack around this, is to set isDestroyed to true, and just before calling initialize() set it to false :)