Removed reloader

This commit is contained in:
The Great & Powerful James Wernicke 2015-06-04 00:07:28 -06:00
parent bc62226860
commit 68723b25c9
1 changed files with 0 additions and 36 deletions

View File

@ -1,36 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>Scoreboard</title>
<link rel="stylesheet" href="style.css" type="text/css">
<script src="scoreboard.js" async></script>
<style>
body, html {
width: 100%;
height: 100%;
overflow: hidden;
cursor: none;
}
iframe {
width: 100%;
height: 100%;
border: none;
margin: 0;
padding: 0;
}
</style>
<script>
var i = 0;
function init() {
setInterval(function(){
window.document.getElementById('reloader').src = window.document.getElementById('reloader').src;
},2000);
}
window.addEventListener("load", init);
</script>
</head>
<body>
<iframe id="reloader" src="//koth/scoreboard.html">
<div id="scoreboard"></div>
</body>
</html>