From ae8f5c6b5effd01cea0bb5a49266b317ce9bae92 Mon Sep 17 00:00:00 2001 From: Nonimart Date: Mon, 23 Jun 2025 16:35:52 +0200 Subject: [PATCH] TEST inserting console.log to test out javascript --- resources/js/singles/index-panel.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/js/singles/index-panel.ts b/resources/js/singles/index-panel.ts index 64d8e71..342962d 100644 --- a/resources/js/singles/index-panel.ts +++ b/resources/js/singles/index-panel.ts @@ -2,6 +2,7 @@ export default function handleIndexPanels(): void { const indexPanel = document.querySelector('.index-panel'); if (!indexPanel) return; + console.log('indexPanel'); observeTabsButtons(); observeFootnotesLinks(); }