21 lines
614 B
JavaScript
21 lines
614 B
JavaScript
|
document.addEventListener("DOMContentLoaded", () => {
|
||
|
|
||
|
let dropDownMenuElement = document.getElementById("dropDownMenu");
|
||
|
let dropDownMenuButtonElement = document.getElementById("dropDownMenuButton");
|
||
|
|
||
|
if (dropDownMenuButtonElement != null) {
|
||
|
|
||
|
dropDownMenuButtonElement.addEventListener("click", () => {
|
||
|
|
||
|
if (dropDownMenuElement.classList.contains("dropDownVisible")) {
|
||
|
dropDownMenuElement.classList.remove("dropDownVisible");
|
||
|
}
|
||
|
else {
|
||
|
dropDownMenuElement.classList.add("dropDownVisible");
|
||
|
}
|
||
|
|
||
|
})
|
||
|
|
||
|
}
|
||
|
|
||
|
})
|