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 1752a49bff - Show all commits

View File

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