forked from drowl87/hextra_mirror
13 lines
396 B
JavaScript
13 lines
396 B
JavaScript
document.addEventListener("DOMContentLoaded", function () {
|
|
const buttons = document.querySelectorAll(".hextra-sidebar-collapsible-button");
|
|
buttons.forEach(function (button) {
|
|
button.addEventListener("click", function (e) {
|
|
e.preventDefault();
|
|
const list = button.parentElement.parentElement;
|
|
if (list) {
|
|
list.classList.toggle("open")
|
|
}
|
|
});
|
|
});
|
|
});
|