Initial working version

This commit is contained in:
2020-01-01 21:36:10 +01:00
commit f344cf83d9
13 changed files with 380 additions and 0 deletions

23
index.html Normal file
View File

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<body onload="init()">
<p><span id="res"></span></p>
<script>
function init() {
setInterval(() => {
loadDoc("racestate.txt");
}, 250);
}
function loadDoc(url) {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("res").innerHTML = this.responseText;
}
};
xhttp.open("GET", url, true);
xhttp.send();
}
</script>
</body>
</html>