Files
com.xaymar.www/assets/js/navigation.mjs
T
2024-05-16 11:40:24 +02:00

18 lines
486 B
JavaScript

'use strict';
function addNavigationControl() {
// Support for Mobile Devices
document.querySelector("#navigation-toggle").addEventListener("click", (ev) => {
document.querySelector("#header #navigation").classList.toggle("open");
});
}
if (document.readyState === "complete"
|| document.readyState === "loaded"
|| document.readyState === "interactive") {
addNavigationControl();
} else {
document.addEventListener('DOMContentLoaded', () => {
addNavigationControl();
});
}