ocarina/html/index.html
Bryan Schumaker 66a637815e utils.js: separate attr and id
I was using the attribute as the object id in the html page.  By
splitting the two, I can have the same attribute set in multiple places
on a single page independently.
2010-12-27 12:45:23 -05:00

21 lines
453 B
HTML

<html>
<head>
<script type="text/javascript" src="utils.js"></script>
</head>
<body>
<table>
<tr><td><a href="library.py">Library Browser</a></td></tr>
<tr><td><a href="library2.py">Library Browser 2</a></td></tr>
<tr><td><a href="controls.html">Remote Controls</a></td></tr>
<tr><td id="vers"></td><td id="up"></td></tr>
</table>
<script type="text/javascript">
set_attr("version", "vers");
set_attr("uptime", "up");
</script>
</body>
</html>