mirror of
https://github.com/rottenwheel/revuo-weekly.git
synced 2024-11-09 10:12:25 -07:00
Merge pull request #33 from recanman/recanman/patch2
fix saving of mobile theme, add IE compatibility
This commit is contained in:
commit
e20b9c633b
14
js/main.js
14
js/main.js
@ -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…
Reference in New Issue
Block a user