forked from cubiq/KiiConf
-
Notifications
You must be signed in to change notification settings - Fork 30
/
editor.html
42 lines (37 loc) · 1.38 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
<!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/polyfill.min.js"></script>
<script src="lib/jquery.min.js"></script>
<script src="lib/lodash.min.js"></script>
<script src="js/settings.js"></script>
<script src="js/utils.js"></script>
<script src="js/defaults.js"></script>
<script src="js/emitter.js"></script>
<script src="js/key.js"></script>
<script src="js/import-map.js"></script>
<script src="js/editor.js"></script>
</head>
<body 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="alert" class="hide">
<span class="alert">We've reloaded where you left off last time!</span>
</div>
<div id="stage" class="stage">
</div>
</div>
<script>
$(document).ready(function (){ Editor.create().init(false); });
</script>
</body>
</html>