1
0
Fork 0
mirror of https://github.com/dirtbags/moth.git synced 2025-01-07 20:41:05 -07:00
moth/www/scoreboard-reloader.html
The Great & Powerful James Wernicke 061474a231 Changed from reloader to projector
2015-06-04 00:02:51 -06:00

37 lines
816 B
HTML

<!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>