From b9370dc6f81c139badd8c01c8578e034dd81c888 Mon Sep 17 00:00:00 2001 From: "Ryan@WorkStation" Date: Tue, 3 Oct 2023 16:17:43 -0400 Subject: [PATCH] make the page reload every hour --- index.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/index.html b/index.html index dda72fe..031df59 100644 --- a/index.html +++ b/index.html @@ -256,6 +256,11 @@ function GetBeamStatus(){ setInterval(GetBeamStatus, 5* 1000); +function refreshPage() { + location.reload(); +} + +setTimeout(refreshPage, 60*60*1000); // REFRESH PAGE EVERY HOUR