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

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