diff options
Diffstat (limited to 'js/statusbar.js')
-rwxr-xr-x | js/statusbar.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/js/statusbar.js b/js/statusbar.js new file mode 100755 index 0000000..210653e --- /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;document.getElementById("statusbar").classList.add("desktop");})});
+ $(".progress").fadeOut("slow");
+})
\ No newline at end of file |