Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const toggleAppSidebarDesktop = () => {
- var elm = document.querySelector('.app');
- if (elm) {
- if (!(elm.classList.contains('app-with-top-nav') && elm.classList.contains('app-without-sidebar'))) {
- elm.classList.toggle('app-sidebar-collapsed');
- setTimeout(() => {
- window.dispatchEvent(new Event('resize'));
- }, 150);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment