From e8e6a0906702dc7b569ef4f0b2d9486d772ba562 Mon Sep 17 00:00:00 2001 From: Minteck Date: Sun, 31 Oct 2021 11:49:13 +0100 Subject: Initial commit --- js/statusbar.js | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 js/statusbar.js (limited to 'js/statusbar.js') diff --git a/js/statusbar.js b/js/statusbar.js new file mode 100644 index 0000000..42ee461 --- /dev/null +++ b/js/statusbar.js @@ -0,0 +1,4 @@ +window.addEventListener("load", () => { + window.fetch("/statusbar.php").then((a) => {a.text().then((b) => {document.body.innerHTML=document.body.innerHTML+b})}); + $(".progress").fadeOut("slow"); +}) \ No newline at end of file -- cgit