mirror of
https://github.com/SpikeHD/MojoFrontend.git
synced 2024-11-25 10:07:26 +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)
|
||
|
}
|
||
|
})
|