From f49e6db9e7fe645527fe5460f1300e278063ebf1 Mon Sep 17 00:00:00 2001 From: adam Date: Tue, 25 Nov 2025 13:11:32 -0500 Subject: [PATCH] timer autostart --- utility web pages/timer.html | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/utility web pages/timer.html b/utility web pages/timer.html index f9adefc..25f0705 100644 --- a/utility web pages/timer.html +++ b/utility web pages/timer.html @@ -168,11 +168,6 @@ default finish sound is secret-area.wav no. 1 hour 12 minutes 3 seconds would be "1h12m3s". (it's an iso8601 duration string, except i'm throwing "PT" in front for you. Blame javascript as a langauge and ecosystem.) - - - - - @@ -203,7 +198,6 @@ default finish sound is secret-area.wav if(onloadTime !== null){ timeinput.value = onloadTime; finishTime = Temporal.Now.instant().add(Temporal.Duration.from("PT" + timeinput.value)); - hz(); } let onloadFile = getGET("audio"); @@ -225,6 +219,7 @@ default finish sound is secret-area.wav finishSound.load(); } }); + okgo(); }