This commit is contained in:
Mathijs Lermer 2023-01-16 20:24:04 +01:00
parent 334e398852
commit 55aa9bf687
5 changed files with 14 additions and 26 deletions
assets

8
assets/js/mrl.js Normal file
View file

@ -0,0 +1,8 @@
function hamburgermenuknopje() {
var x = document.getElementById('main_menu_01');
if (x.style.display === "block") {
x.style.display = "none";
} else {
x.style.display = "block";
}
}

View file