summaryrefslogtreecommitdiff
path: root/ofborg/ofborg-viewer/src/lib/bsod.js
blob: 6b29d41417e913359f356a4f58c546d384fe9ecc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
 * Borg screen of death.
 *
 * Replaces the whole body with an error message.
 */
const bsod = function(msg = "Something happened.") {
	const body = window.document.body;
	body.innerText =
`Hmmm, this is embarassing...

-> ${msg}
`;
	body.className = "bsod";
};

export default bsod;