mistserver/lsp/footer.html

52 lines
No EOL
1.3 KiB
HTML

<script>
//this is placed here because the compression compiler does not deal with the eval function properly.
function enterSettings(){
$('.isSetting').each(function(){
var objpath = findObjPath($(this));
var val = '';
try {
eval('val = '+objpath+';');
}
catch(e) { }
if ($(this).is('input,select')) {
$(this).val(val);
}
else {
$(this).text(val);
}
});
}
</script>
</head>
<body>
<div id='header'>
<div id='logo'>
<a href='http://mistserver.org' target='_blank'>
<span>Mist/</span> Server
</a>
</div>
<div id='status'>
<span id='connection' class='red'>Disconnected</span>
<span id='user_and_host'></span>
<span id='message'></span>
</div>
</div>
<div id='menu'>
<div class='button'>Overview</div>
<div class='button'>Protocols</div>
<div class='button'>Streams</div>
<div class='button LTS-only'>Limits</div>
<div class='button'>Conversion</div>
<div class='button'>Logs</div>
<div class='button'>Server Stats</div>
<br>
<div class='button red'>Disconnect</div>
<a class='button' href='http://shop.mistserver.org' target='_blank'>Mist Shop</a>
</div>
<div id='page'></div>
</body>
</html>