blob: 446c655afc506a7586c954236e4445e91ab205dd (
plain)
1
2
3
4
5
6
7
8
|
startUpdateMachines();
(async () => {
const urlParams = new URLSearchParams(window.location.search);
const blk = await information(urlParams.get("machine"))["block"];
console.log("blk", blk);
document.getElementById("status-title").innerHTML = `Machine Status for H${blk ? blk : '?'}`
})();
|