From aa88a2f73bb85b51daacb35055d57cca57339b93 Mon Sep 17 00:00:00 2001 From: Myron Blair Date: Sun, 21 Jun 2026 04:59:21 +0000 Subject: [PATCH] fix: missing quotes around kiosk-mode string caused ReferenceError breaking all buttons --- public_html/assets/js/jarvis-app.js | 2 +- public_html/index.html | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/public_html/assets/js/jarvis-app.js b/public_html/assets/js/jarvis-app.js index 4ba8c31..97d347a 100644 --- a/public_html/assets/js/jarvis-app.js +++ b/public_html/assets/js/jarvis-app.js @@ -161,7 +161,7 @@ function showApp(name, greeting, silent = false) { } }, 30000); setInterval(() => { - if (voiceMode && !document.body.classList.contains(kiosk-mode) && voiceLastCmd > 0 && Date.now() - voiceLastCmd > VOICE_SLEEP_MS) { + if (voiceMode && !document.body.classList.contains("kiosk-mode") && voiceLastCmd > 0 && Date.now() - voiceLastCmd > VOICE_SLEEP_MS) { exitVoiceMode(); } }, 60000); diff --git a/public_html/index.html b/public_html/index.html index ce6397c..6b71717 100644 --- a/public_html/index.html +++ b/public_html/index.html @@ -6,7 +6,7 @@ JARVIS — Integrated Defense and Logistics System - + @@ -426,12 +426,12 @@ style="position:fixed;top:-9999px;left:-9999px;width:320px;height:240px"> - - - - - - + + + + + +