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

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