issue-fix #32

Merged
fred.boniface merged 24 commits from issue-fix into online 2022-09-23 11:03:56 +01:00
Showing only changes of commit c03bd7d831 - Show all commits

View File

@ -1,8 +1,8 @@
function menuFunction() { function menuFunction() {
var x = document.getElementByID("menu-hidden"); var hidden = document.getElementById("menu-hidden");
if x.style.display === "block") { if hidden.style.display === "block") {
x.style.display = "none"; hidden.style.display = "none";
} else { } else {
x.style.display = "block"; hidden.style.display = "block";
} }
} }