This repository has been archived on 2026-05-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2021-06-17 22:03:29 +02:00

15 lines
438 B
JavaScript

var loadingContent = "Loading...";
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
loadingContent = this.responseText;
}
};
xmlhttp.open("GET", "templates/loading-screen.html", true);
xmlhttp.send();
function displayLoading() {
document.getElementById("options").style.display = "none";
document.getElementById("loader").innerHTML = loadingContent;
}