mirror of
https://github.com/Wonderfall/hugo-WonderMod.git
synced 2024-11-21 18:11:37 +01:00
small js change
This commit is contained in:
parent
17fd82358d
commit
5737f8613c
@ -43,7 +43,9 @@ function scrollToTop() {
|
||||
}
|
||||
|
||||
function themeToggle() {
|
||||
document.getElementById("theme-toggle").addEventListener("click", () => {
|
||||
var themeButton = document.getElementById("theme-toggle");
|
||||
|
||||
themeButton.addEventListener("click", () => {
|
||||
if (document.body.className.includes("dark")) {
|
||||
document.body.classList.remove('dark');
|
||||
localStorage.setItem("pref-theme", 'light');
|
||||
|
Loading…
Reference in New Issue
Block a user