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