made dark mode store locally (hopefully)

This commit is contained in:
clashofclanselixircollector 2024-12-11 18:00:19 -08:00
parent 5fe986e78f
commit 46660882bb

View File

@ -71,6 +71,10 @@ $(document).ready(function() {
localStorage.setItem('darkModeOn', false);
}
}
if (localStorage.getItem('darkModeOn')) {
var checked = true;
updateDarkMode(checked);
}
$("#darkModeCheckbox").on("change", function() {
var checked = $("#darkModeCheckbox").is(":checked");
updateDarkMode(checked);