mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:30:57 +08:00
e80332a2bc
The more parallel the branches, the easier the transition will be.
26 lines
656 B
JavaScript
26 lines
656 B
JavaScript
// discourse-skip-module
|
|
|
|
(function () {
|
|
if (window.unsupportedBrowser) {
|
|
throw "Unsupported browser detected";
|
|
}
|
|
|
|
let Discourse = requirejs("discourse/app").default.create();
|
|
|
|
// required for our template compiler
|
|
window.__DISCOURSE_RAW_TEMPLATES = requirejs(
|
|
"discourse-common/lib/raw-templates"
|
|
).__DISCOURSE_RAW_TEMPLATES;
|
|
|
|
// required for addons 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);
|
|
}
|
|
});
|
|
|
|
// ensure Discourse is added as a global
|
|
window.Discourse = Discourse;
|
|
})();
|