Make menu button work

This commit is contained in:
PrototypeArea
2022-06-27 03:02:17 -04:00
parent 7bd99ae8ad
commit b4cca108fc
2 changed files with 8 additions and 2 deletions

View File

@ -69,4 +69,9 @@
} else {
document.documentElement.classList.remove('dark')
}
function toggleMenu() {
document.getElementById("menu").classList.toggle("hidden");
}
window.toggleMenu = toggleMenu
</script>