mirror of
https://github.com/SpikeHD/MojoFrontend.git
synced 2024-11-16 07:29:23 +00:00
7 lines
227 B
JavaScript
7 lines
227 B
JavaScript
document.addEventListener("DOMContentLoaded", () => {
|
|
const sidebarItems = document.querySelector("#sidebar").children;
|
|
|
|
for (const item of sidebarItems) {
|
|
item.onclick = (e) => switchPage(e.target.dataset.value)
|
|
}
|
|
}) |