This commit is contained in:
2023-08-22 17:19:23 +02:00
parent 863a55b461
commit fcba23ea1f
26 changed files with 917 additions and 0 deletions

3
test/assets/js/app.js Normal file
View File

@@ -0,0 +1,3 @@
document.querySelectorAll(".js-submenu").forEach(function(e){
e.addEventListener('click', function (event) {this.parentElement.querySelector('.submenu').classList.toggle("is-open");});
});