summaryrefslogtreecommitdiff
path: root/frontend/status.js
blob: 5f55fe8b32773b09338ec6f9cce33686298dfd78 (plain)
1
2
3
4
5
6
7
startUpdateMachines();

(async () => {
	const urlParams = new URLSearchParams(window.location.search);
	const inf = await information(urlParams.get("machine"));
	document.getElementById("status-title").innerHTML = `Machine Status for H${inf ? inf.block : '?'}`
})();