This repository has been archived on 2023-08-24. You can view files and clone it, but cannot push or open issues or pull requests.
athena.fb-infra.uk/js/nav.js
2022-09-22 19:21:37 +01:00

9 lines
211 B
JavaScript

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