2020-03-06 17:49:28 -05:00
|
|
|
import Application from "@ember/application";
|
2016-08-31 11:30:51 -04:00
|
|
|
import { buildResolver } from "discourse-common/resolver";
|
2016-08-24 14:35:07 -04:00
|
|
|
|
2020-03-06 17:49:28 -05:00
|
|
|
export default Application.extend({
|
2016-08-24 14:35:07 -04:00
|
|
|
rootElement: "#wizard-main",
|
2016-08-31 11:30:51 -04:00
|
|
|
Resolver: buildResolver("wizard"),
|
2016-08-25 13:14:56 -04:00
|
|
|
|
|
|
|
start() {
|
2020-08-28 15:30:20 -04:00
|
|
|
// required for select kit to work without Ember CLI
|
|
|
|
Object.keys(Ember.TEMPLATES).forEach((k) => {
|
|
|
|
if (k.indexOf("select-kit") === 0) {
|
|
|
|
let template = Ember.TEMPLATES[k];
|
|
|
|
define(k, () => template);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-08-25 13:14:56 -04:00
|
|
|
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
|
|
|
});
|