17 lines
428 B
JavaScript
Executable File
17 lines
428 B
JavaScript
Executable File
const menuIconButton = document.querySelector("[data-menu-icon-btn]")
|
|
const notifBellButton = document.querySelector("[data-notifBell-btn]")
|
|
const sidebar = document.querySelector("[data-sidebar]")
|
|
|
|
menuIconButton.addEventListener("click", () => {
|
|
sidebar.classList.toggle("open")
|
|
})
|
|
|
|
|
|
notifBellButton.addEventListener(
|
|
"click", () => {
|
|
alertify.set({ delay: 1700 });
|
|
alertify.success("Success notification");
|
|
}
|
|
|
|
)
|