initial commit - cross reference with 5th port - obviously has compile errors
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
<!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'/>
|
||||
<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>
|
||||
Reference in New Issue
Block a user