One Hat Cyber Team
Your IP :
216.73.216.55
Server IP :
5.189.175.239
Server :
Linux panel.gemx-ai.com 5.14.0-570.19.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 4 04:00:24 EDT 2025 x86_64
Server Software :
LiteSpeed
PHP Version :
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
farmersapp
/
store.farmersapp.store
/
public
/
js
/
Edit File:
tailwind-mobile-sidebar.js
// Tailwind mobile sidebar toggle function function toggleMobileSidebar(open) { const sidebar = document.querySelector('.flex.flex-col.transition-all'); if (!sidebar) return; const isRTL = document.documentElement.dir === 'rtl'; // Remove any existing backdrop first const existingBackdrop = document.getElementById('mobile-sidebar-backdrop'); if (existingBackdrop) { existingBackdrop.remove(); } if (open) { // Show sidebar if (isRTL) { sidebar.classList.remove('-right-[280px]'); sidebar.classList.add('right-0'); } else { sidebar.classList.remove('-left-[280px]'); sidebar.classList.add('left-0'); } // Create backdrop const backdrop = document.createElement('div'); backdrop.id = 'mobile-sidebar-backdrop'; backdrop.className = 'fixed inset-0 bg-black bg-opacity-50 z-30'; backdrop.style.opacity = '0'; document.body.appendChild(backdrop); // Add click handler to backdrop backdrop.addEventListener('click', function() { toggleMobileSidebar(false); }); // Show backdrop with transition setTimeout(function() { backdrop.style.opacity = '1'; }, 10); } else { // Hide sidebar if (isRTL) { sidebar.classList.remove('right-0'); sidebar.classList.add('-right-[280px]'); } else { sidebar.classList.remove('left-0'); sidebar.classList.add('-left-[280px]'); } } // Force layout recalculation setTimeout(function() { window.dispatchEvent(new Event('resize')); }, 300); }
Simpan