flowbite-admin-dashboard
Version:
A free and open-source admin dashboard template built with Tailwind CSS and Flowbite
29 lines (23 loc) • 1.41 kB
JavaScript
const sidebar = document.getElementById('sidebar');
if (sidebar) {
const toggleSidebarMobile = (sidebar, sidebarBackdrop, toggleSidebarMobileHamburger, toggleSidebarMobileClose) => {
sidebar.classList.toggle('hidden');
sidebarBackdrop.classList.toggle('hidden');
toggleSidebarMobileHamburger.classList.toggle('hidden');
toggleSidebarMobileClose.classList.toggle('hidden');
}
const toggleSidebarMobileEl = document.getElementById('toggleSidebarMobile');
const sidebarBackdrop = document.getElementById('sidebarBackdrop');
const toggleSidebarMobileHamburger = document.getElementById('toggleSidebarMobileHamburger');
const toggleSidebarMobileClose = document.getElementById('toggleSidebarMobileClose');
const toggleSidebarMobileSearch = document.getElementById('toggleSidebarMobileSearch');
toggleSidebarMobileSearch.addEventListener('click', () => {
toggleSidebarMobile(sidebar, sidebarBackdrop, toggleSidebarMobileHamburger, toggleSidebarMobileClose);
});
toggleSidebarMobileEl.addEventListener('click', () => {
toggleSidebarMobile(sidebar, sidebarBackdrop, toggleSidebarMobileHamburger, toggleSidebarMobileClose);
});
sidebarBackdrop.addEventListener('click', () => {
toggleSidebarMobile(sidebar, sidebarBackdrop, toggleSidebarMobileHamburger, toggleSidebarMobileClose);
});
}