summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--js/AppBase.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/js/AppBase.js b/js/AppBase.js
index a9efbfecb..c7e221094 100644
--- a/js/AppBase.js
+++ b/js/AppBase.js
@@ -379,10 +379,11 @@ define(["dojo/_base/declare"], function (declare) {
user_css = "css/default.css?" + Date.now();
}
- fetch(user_css).then(() => {
+ $("main").fade({duration: 0.5, afterFinish: () => {
link.setAttribute("href", user_css);
+ $("main").appear({duration: 0.5});
xhrPost("backend.php", {op: "rpc", method: "setpref", key: "USER_CSS_THEME", value: user_theme});
- });
+ }});
}
},