From f22e6b495e326f65164a262e1d5de0bafd059bfd Mon Sep 17 00:00:00 2001 From: Antoine Date: Mon, 12 May 2025 16:55:46 +0200 Subject: [PATCH] REMOVE Remove console log statements from app.js to clean up code --- js/app.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/js/app.js b/js/app.js index 2a126a9..69df542 100644 --- a/js/app.js +++ b/js/app.js @@ -19,7 +19,6 @@ }); document.addEventListener("focusin", (e) => { const header2 = document.querySelector("#primary-header"); - console.log(header2.contains(document.activeElement)); if (header2.classList.contains("nav-open") && !header2.contains(document.activeElement)) { header2.classList.remove("nav-open"); burgerMenuToggle.setAttribute("aria-expanded", false); @@ -36,8 +35,6 @@ } // resources/js/app.js - console.log("menuInit"); - console.log("menuIniteeeee"); window.addEventListener("load", function() { menuInit(); });