JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "main.js"

Full Path: /home/u703019046/domains/nawabs.com.au/public_html/public/backend/js/main.js
File size: 642 bytes
MIME-type: text/plain
Charset: utf-8

"use strict"


/* Sherah Sidebar Menu */
const cs_button = document.querySelectorAll(".sherah__sicon");
const cs_action = document.querySelectorAll(".sherah-smenu, .sherah-header, .sherah-adashboard");

cs_button.forEach(button => {
    button.addEventListener("click", function() {
        cs_action.forEach((el) => {
            el.classList.toggle("sherah-close");
        });
        localStorage.setItem("iscicon", cs_action[0].classList.contains("sherah-close"));
    });
});

if (localStorage.getItem("iscicon") === "true") {
    cs_action.forEach((el) => {
        el.classList.add("sherah-close");
    });
}