summaryrefslogtreecommitdiff
path: root/frontend/status.js
blob: 3d92fc16277f09a3e12ff7fbc2381fa0f8c8489a (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"));
	console.log("blk", blk);
	document.getElementById("status-title").innerHTML = `Machine Status for H${blk ? blk : '?'}`
})();