mariodeckers

Results 2 comments of mariodeckers

If anybody has played around with this and found a fix that remembers the toggled state, I would very much appreciate if they could share here. (Not much of a...

Great help guys! So this works now: 1. Change sb-admin-2.js ``` // Toggle the side navigation let sidebarState = sessionStorage.getItem('sidebar'); $(".sidebar").toggleClass(sidebarState); $("#sidebarToggle, #sidebarToggleTop").on('click', function(e) { $("body").toggleClass("sidebar-toggled"); $(".sidebar").toggleClass("toggled"); if ($(".sidebar").hasClass("toggled")) {...