mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 09:26:54 -06:00
DEV: Live reload styles in Ember CLI (#12043)
This commit is contained in:
parent
956f849250
commit
a6bb7e6d25
@ -233,6 +233,13 @@
|
||||
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(() => {
|
||||
define("I18n", ["exports"], function (exports) {
|
||||
return I18n;
|
||||
|
Loading…
Reference in New Issue
Block a user