-
Notifications
You must be signed in to change notification settings - Fork 32
/
editor.html
30 lines (25 loc) · 906 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
25
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>KII Keyboard Editor</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="lib/jquery-2.1.3.min.js"></script>
<script src="js/editor.js"></script>
<script src="js/key.js"></script>
<script src="js/defaults.js"></script>
</head>
<body onload="APP(true)" class="editor"><!-- set to false in production -->
<div id="wrapper" class="wrapper">
<nav class="cf">
<button type="button" id="load-map" class="button-read">load KII map</button>
<button type="button" id="save-map" class="button-write">save layout</button>
<input type="text" name="name" value="" id="kii-name" placeholder="untitled"> @
<input type="text" name="layout" value="" id="kii-layout" placeholder="default">
</nav>
<div id="stage" class="stage">
</div>
</div>
</body>
</html>