-
Notifications
You must be signed in to change notification settings - Fork 0
/
chaos.htm
33 lines (29 loc) · 851 Bytes
/
chaos.htm
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
28
29
30
31
32
33
<html>
<head>
<title>Chaos, the space where things first appeared</title>
<script type="text/javascript" src="json2.js"></script>
<script type="text/javascript" src="jquery-1.5.js"></script>
<script type="text/javascript" src="jquery-ui-1.8.9.custom.min.js"></script>
<script type="text/javascript" src="NetThings.Core.js"></script>
<script type="text/javascript" src="cookies.js" ></script>
<link rel="Stylesheet" type="text/css" href="style.css" ></link>
<script type="text/javascript">
$(function() {
var appCore = Mike.NetThings.Core;
$('#reset').click(function() {
appCore.clearSavedState();
appCore.loadState();
appCore.render();
});
appCore.loadState();
appCore.render();
});
</script>
</head>
<body>
<div id="controlPanel">
<input id="reset" type="submit" value="reset"/>
</div>
<div id="objects"> </div>
</body>
</html>