aboutsummaryrefslogtreecommitdiff
path: root/js/statusbar.js
blob: 7391a49224bbfd964e3ae0cb65d07de84cac579d (plain)
1
2
3
4
window.addEventListener("load", () => {
    window.fetch("/statusbar.php").then((a) => {a.text().then((b) => {document.body.innerHTML=document.body.innerHTML+b})});
    $(".progress").fadeOut("slow");
})