forked from Maciek416/CloisterSpace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.22 KB
/
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
28
29
30
31
32
33
<html>
<link rel="stylesheet" type="text/css" href="cloisterspace.css"/>
<body>
<div id="board"></div>
<div id="sideboard">
<div id="controls">
<img id="candidate" src=""/>
<div style="float: right">
<input id="left" type="button" value="Left" disabled="disabled"/><br/>
<input id="right" type="button" value="Right" disabled="disabled"/><br/>
<input id="next" type="button" value="Next" disabled="disabled"/>
</div>
</div>
<div id="debug">
<div id="play">
<input id="go" type="button" value="Go!"/><br/>
<input id="step" type="button" value="Step"/><br/>
</div>
<div id="features">
<input id="features_all" type="button" value="Features: All"/><br/>
<input id="features_completed" type="button"
value="Features: Completed"/><br/>
<input id="features_farms" type="button"
value="Features: Farms"/>
</div>
</div>
</div>
</body>
<script src="lib/jquery-1.5.1.min.js"></script>
<script src="lib/jquery.scrollbarWidth.js"></script>
<script src="lib/underscore-min.js"></script>
<script src="coffee/cloisterspace.js"></script>
</html>