forked from nomoi/sutyciska_arco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (61 loc) · 1.96 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" href="./stylesheets/layout.css"/>
<link rel="stylesheet" href="./stylesheets/steps.css"/>
<link rel="stylesheet" href="./stylesheets/editor.css"/>
<link rel="stylesheet" href="./stylesheets/viewer.css"/>
<link rel="stylesheet" href="./stylesheets/definition.css"/>
<script src="./array.js"></script>
<script src="./morph.js"></script>
<script src="./codes.js"></script>
<script src="./lexing.js"></script>
<script src="./processing.js"></script>
<script src="./worker_wrapper.js"></script>
<script src="./worker_group.js"></script>
<script src="./links.js"></script>
<script src="./structure.js"></script>
<script src="./file.js"></script>
<script src="./validator.js"></script>
<script src="./editor.js"></script>
<script src="./dispatcher.js"></script>
<script src="./menu.js"></script>
<script src="./runner.js"></script>
<script src="./keyboard.js"></script>
<script src="./spellcheck.js"></script>
<script src="./definition.js"></script>
<script src="./onload.js"></script>
</head>
<body>
<main>
<div id="editable-container">
<div id="editor-container">
<div id="editor-node" contenteditable="true" autocomplete="off" autocorrect="off" spellcheck="false"></div>
<div id="spellcheck-node"></div>
</div>
<div id="viewer-container">
<div id="viewer-node"></div>
<div id="definition-root">
<div class="definition-children"></div>
</div>
</div>
</div>
<div id="steps-container" class="klina">
<div id="steps-menu">
<button id="steps-mode"></button>
<button id="steps-next">>></button>
<div id="steps-indicator">
<button>vlakorfa'i</button>
<button>cmetyvalkanji</button>
<button>grafyningau</button>
<button>xml zei ningau</button>
<button>genturfa'i</button>
</div>
</div>
<div id="steps-output">
</div>
</div>
</main>
</body>
</html>