aboutsummaryrefslogtreecommitdiff
path: root/app/cdn/js/statusbar.js
blob: 210653ec5f8b076629e6f304f07ccbf1254c4b4a (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;document.getElementById("statusbar").classList.add("desktop");})});
    $(".progress").fadeOut("slow");
})