0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-20 07:41:11 +02:00
discourse-custom-wizard/assets/javascripts/wizard/custom-wizard.js.es6

36 Zeilen
1.010 B
Text

2019-11-20 13:08:04 +01:00
import { buildResolver } from "discourse-common/resolver";
2019-11-20 13:08:04 +01:00
export default Ember.Application.extend({
rootElement: "#custom-wizard-main",
2019-11-20 13:08:04 +01:00
Resolver: buildResolver("wizard"),
start() {
Object.keys(requirejs._eak_seen).forEach((key) => {
if (/\/pre\-initializers\//.test(key)) {
const module = requirejs(key, null, null, true);
if (!module) {
throw new Error(key + " must export an initializer.");
}
2019-11-20 13:08:04 +01:00
const init = module.default;
const oldInitialize = init.initialize;
init.initialize = () => {
oldInitialize.call(this, this.__container__, this);
};
this.initializer(init);
}
});
Object.keys(requirejs._eak_seen).forEach((key) => {
if (/\/initializers\//.test(key)) {
const module = requirejs(key, null, null, true);
if (!module) {
throw new Error(key + " must export an initializer.");
}
this.initializer(module.default);
}
});
},
});