2016-08-31 11:30:51 -04:00
|
|
|
import { buildResolver } from 'discourse-common/resolver';
|
2016-08-24 14:35:07 -04:00
|
|
|
|
|
|
|
export default Ember.Application.extend({
|
|
|
|
rootElement: '#wizard-main',
|
2016-08-31 11:30:51 -04:00
|
|
|
Resolver: buildResolver('wizard'),
|
2016-08-25 13:14:56 -04:00
|
|
|
|
|
|
|
start() {
|
|
|
|
Object.keys(requirejs._eak_seen).forEach(key => {
|
|
|
|
if (/\/initializers\//.test(key)) {
|
2017-07-05 14:14:30 -04:00
|
|
|
const module = requirejs(key, null, null, true);
|
2016-08-25 13:14:56 -04:00
|
|
|
if (!module) { throw new Error(key + ' must export an initializer.'); }
|
2016-10-28 15:51:19 -04:00
|
|
|
this.initializer(module.default);
|
2016-08-25 13:14:56 -04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2016-08-24 14:35:07 -04:00
|
|
|
});
|