-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (25 loc) · 841 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
<title> Kiosk statistics </title>
<link href="display/css/stat_style.css" type="text/css" rel="stylesheet" />
</head>
<body oncontextmenu="return false">
<h1>This page updated daily</h1>
<img class="center fit" src="display/img/page_stats.png">
<!-- auto sizing solution borrowed from
http://stackoverflow.com/questions/6169666/how-to-resize-an-image-to-fit-in-the-browser-window
thank you sebnukem
-->
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" language="JavaScript">
function set_body_height() { // set body height = window height
$('body').height($(window).height());
}
$(document).ready(function() {
$(window).bind('resize', set_body_height);
set_body_height();
});
</script>
</body>
</html>