Guest User

Untitled

a guest
Apr 11th, 2024
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. const toggleAppSidebarDesktop = () => {
  2. var elm = document.querySelector('.app');
  3. if (elm) {
  4. if (!(elm.classList.contains('app-with-top-nav') && elm.classList.contains('app-without-sidebar'))) {
  5. elm.classList.toggle('app-sidebar-collapsed');
  6.  
  7. setTimeout(() => {
  8. window.dispatchEvent(new Event('resize'));
  9. }, 150);
  10. }
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment