fix saving of mobile theme, add IE compatibility

pull/33/head
recanman 4 months ago
parent 38301f8715
commit 35203f4eda

@ -67,12 +67,20 @@ if (document.body.clientWidth < 940) {
] ]
] ]
// Switch the theme when the theme switcher is clicked. const checkMobileTheme = () => {
themeSwitcher.addEventListener('change', () => {
const theme = themeVariables[themeSwitcher.checked ? 1 : 0]; const theme = themeVariables[themeSwitcher.checked ? 1 : 0];
theme.forEach(variable => { theme.forEach(variable => {
document.documentElement.style.setProperty(`--${variable.name}`, variable.value); document.documentElement.style.setProperty(`--${variable.name}`, variable.value);
}); });
}); };
// Ensure IE compatibility
if (document.addEventListener) {
themeSwitcher.addEventListener('change', checkMobileTheme);
} else if (document.attachEvent) {
themeSwitcher.attachEvent('onchange', checkMobileTheme);
}
checkMobileTheme();
} }
Loading…
Cancel
Save