DEV: Live reload styles in Ember CLI (#12043)
This commit is contained in:
parent
956f849250
commit
a6bb7e6d25
|
@ -233,6 +233,13 @@
|
||||||
head.append(script);
|
head.append(script);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (data.bootstrap.theme_ids) {
|
||||||
|
let theme_ids = document.createElement("meta");
|
||||||
|
theme_ids.setAttribute("name", "discourse_theme_ids");
|
||||||
|
theme_ids.setAttribute("content", data.bootstrap.theme_ids);
|
||||||
|
head.append(theme_ids);
|
||||||
|
}
|
||||||
|
|
||||||
loadScript(locale).then(() => {
|
loadScript(locale).then(() => {
|
||||||
define("I18n", ["exports"], function (exports) {
|
define("I18n", ["exports"], function (exports) {
|
||||||
return I18n;
|
return I18n;
|
||||||
|
|
Loading…
Reference in New Issue