aboutsummaryrefslogtreecommitdiff
path: root/static/js/themes.js
diff options
context:
space:
mode:
Diffstat (limited to 'static/js/themes.js')
-rw-r--r--static/js/themes.js12
1 files changed, 11 insertions, 1 deletions
diff --git a/static/js/themes.js b/static/js/themes.js
index 19bdbb4..3f1b906 100644
--- a/static/js/themes.js
+++ b/static/js/themes.js
@@ -26,5 +26,15 @@ function applyTheme() {
tags[i].disabled = true;
}
}
- setTheme(getCookie("theme") || "default");
+ let theme = getCookie("theme") || "default";
+ setTheme(theme);
+
+ // reflect this in the switcher
+ let switcher = document.getElementById("themeSwitcher");
+ for(var i = 0; i < switcher.options.length; i++) {
+ if (switcher.options[i].value === theme) {
+ switcher.selectedIndex = i;
+ break;
+ }
+ }
}