|
@@ -50,12 +50,14 @@ function otheronload() {
|
|
|
// if (!Cookies.get("theme_pref")) {
|
|
|
// setCookie("theme_pref", "light", 7);
|
|
|
// theme.select("light");
|
|
|
- // } else if (Cookies.get("theme_pref") == "dark")
|
|
|
- // theme.select("dark");
|
|
|
- // else {
|
|
|
- // theme.select("light");
|
|
|
- // }
|
|
|
- // }
|
|
|
+ // } else
|
|
|
+ if(Cookies.get("theme_pref") == "dark")
|
|
|
+ {
|
|
|
+ theme.select("dark");
|
|
|
+ }
|
|
|
+ else {
|
|
|
+ theme.select("light");
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
function indexonload() {
|