templates/bundles/SyliusAdminBundle/Script/_close_menu_small_screen.html.twig line 1

Open in your IDE?
  1. <script>
  2.     function checkScreenSize() {
  3.         const sidebar = document.getElementById('sidebar');
  4.         if (window.innerWidth <= 768) {
  5.             sidebar.classList.remove('visible');
  6.         } else {
  7.             sidebar.classList.add('visible');
  8.         }
  9.     }
  10.     window.onload = function() {
  11.         setTimeout(checkScreenSize, 0);
  12.     };
  13.     window.addEventListener('resize', checkScreenSize);
  14. </script>