From 51ddc2fdf223a4998260e3b0d4175c5f45dfd005 Mon Sep 17 00:00:00 2001 From: swee Date: Fri, 6 Dec 2024 18:17:40 -0800 Subject: [PATCH] Use SweeStyle instead of FontAwesome --- script.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script.js b/script.js index 5160fd3..5b0d297 100644 --- a/script.js +++ b/script.js @@ -8,8 +8,8 @@ fetch ("block.txt") .then(y => document.getElementById("blocked").innerHTML = y); async function refresh(){ // Refresh the HTML to show the spinners - document.getElementById("run").innerHTML = "" - document.getElementById("blocked").innerHTML = "" + document.getElementById("run").innerHTML = "..." + document.getElementById("blocked").innerHTML = "..." // Then fetch the values the same way as on the first part of the script. fetch ("run.txt") .then(x => x.text())