mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-09 16:07:40 +00:00
38 lines
1.2 KiB
HTML
38 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv='X-UA-Compatible' content='IE=edge'/>
|
|
<meta charset='utf-8'/>
|
|
<script>
|
|
window.update = function (dataString) {
|
|
var data = JSON.parse(dataString);
|
|
if (window.tgui) {
|
|
window.tgui.set("config", data.config);
|
|
if (typeof data.data !== 'undefined') {
|
|
window.tgui.set("data", data.data);
|
|
window.tgui.animate("adata", data.data);
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
<link rel='stylesheet' href='tgui.css'/>
|
|
<!-- This is processed in byond, so interfaces can override the html head if needed, for custom sheets of style etc -->
|
|
<!--customheadhtml-->
|
|
<script id='data' type='application/json' data-ref='[ref]'>{}</script>
|
|
<script defer src='tgui.js'></script>
|
|
</head>
|
|
<body class='[style]'>
|
|
<div id='container' class='container'>
|
|
<div class='notice'>
|
|
<span>Loading...</span><br/>
|
|
</div>
|
|
</div>
|
|
<noscript>
|
|
<div class='notice'>
|
|
<span>Javascript is required in order to use this interface.</span>
|
|
<span>Please enable Javascript and restart the game.</span>
|
|
</div>
|
|
</noscript>
|
|
</body>
|
|
</html>
|