mirror of
https://github.com/myronblair/jarvis
synced 2026-06-30 17:50:23 -05:00
fix: missing quotes around kiosk-mode string caused ReferenceError breaking all buttons
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user