From 36a717d3ceb1fa3f46f59426989da69f9df5239a Mon Sep 17 00:00:00 2001 From: Kroese Date: Wed, 8 Oct 2025 20:55:38 +0200 Subject: [PATCH] Update script.js --- web/js/script.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/js/script.js b/web/js/script.js index a135f92..0e64553 100644 --- a/web/js/script.js +++ b/web/js/script.js @@ -138,16 +138,16 @@ function setError(text) { return setInfo(text, false, true); } +function schedule() { + setTimeout(getInfo, interval); +} + function reload() { setTimeout(() => { document.location.reload(); }, 3000); } -function schedule() { - setTimeout(getInfo, interval); -} - function connect() { var wsUrl = getURL() + "/status";