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

9 lines
190 B
JavaScript
Raw Normal View History

2022-09-21 21:07:49 +01:00
function menuFunction() {
var x = document.getElementByID("menu-hidden");
if x.style.display === "block") {
x.style.display = "none";
} else {
x.style.display = "block";
}
2022-09-08 21:05:49 +01:00
}