admin.js 230 B

12345678
  1. let switchPanel = document.querySelector(".admin > .switch");
  2. if (switchPanel) {
  3. switchPanel.onclick = function () {
  4. if (this.parentElement) {
  5. this.parentElement.classList.toggle("open");
  6. }
  7. };
  8. }