mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 14:19:49 +08:00
19 lines
500 B
JavaScript
19 lines
500 B
JavaScript
import { buildResolver } from "discourse-common/resolver";
|
|
|
|
export default Ember.Application.extend({
|
|
rootElement: "#wizard-main",
|
|
Resolver: buildResolver("wizard"),
|
|
|
|
start() {
|
|
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);
|
|
}
|
|
});
|
|
}
|
|
});
|