-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpeg_edit.html
34 lines (29 loc) · 1.09 KB
/
peg_edit.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Peg Kitten Solitaire Editor</title>
<link rel="stylesheet" type="text/css" href="css/peg_kitten.css" />
<link rel="stylesheet" type="text/css" href="css/pretty_html.css"/>
</head>
<body>
<div id="game" class="main-content">
<div id="div-gameboard" class="float-left">
<table id="gameboard">
</table>
</div>
</div>
<div id="div-control" class="left-nav">
<button id="play" type=button>Play this map!</button>
<button id="rows-minus" type=button>Less rows?</button>
<button id="rows-plus" type=button>More rows?</button>
<button id="columns-minus" type=button>Less columns?</button>
<button id="columns-plus" type=button>More columns?</button>
</div>
</body>
<script type="text/javascript" src="js/libs/jquery-1.10.2.js"></script>
<script type="text/javascript" src="js/app/defines.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/app/peg_basic.js"></script>
<script type="text/javascript" src="js/app/peg_edit.js"></script>
</html>