-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditor.html
24 lines (23 loc) · 1019 Bytes
/
editor.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
<html>
<head>
<title>Adventure game Editor</title>
<script src="lib/createjs-2013.09.25.min.js"></script>
<script src="lib/jquery-2.0.3.min.js"></script>
<script src="lib/jquery-ui.js"></script>
<script src="lib/handlebars.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery.tablesorter/2.9.1/jquery.tablesorter.min.js"></script>
<script src="//mottie.github.io/tablesorter/js/widgets/widget-editable.js"></script>
<script data-main="dev-editor" src="lib/require.min.js"></script>
<link href="css/cupertino/jquery-ui-1.10.3.custom.css" rel="stylesheet" />
<link href="css/cupertino/fixes.css" rel="stylesheet" />
<link href="css/vertical-tab.css" rel="stylesheet" />
<link href="css/editor.css" rel="stylesheet" type="text/css">
<link href="css/tablesorter/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="canvasdiv" style="display:none;">
<canvas class="crosshair" id="canvas" width="800" height="600"></canvas>
<div id="forms"></div>
</div>
</body>
</html>