mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 22:50:45 +08:00
20 lines
540 B
JavaScript
20 lines
540 B
JavaScript
import Application from "@ember/application";
|
|
import { buildResolver } from "discourse-common/resolver";
|
|
|
|
export default 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);
|
|
}
|
|
});
|
|
}
|
|
});
|