-
Notifications
You must be signed in to change notification settings - Fork 0
/
OSFM Demo Reader.html
32 lines (28 loc) · 990 Bytes
/
OSFM Demo Reader.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OSFM Demo Reader</title>
<script src="https://unpkg.com/[email protected]/dist/pako.min.js"></script>
<script src="json-viewer.js"></script>
<script src="main.js"></script>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<input id="file-container" type="file" onchange="FileUploaded(event)">File Input</input>
<br>
<input id="chunk-number" type="number" onchange="LoadChunk(event)" value="0" />
<br>
<input id="no-seed-check" type="checkbox" />No Seeds</input>
<br>
<input id="no-keys-check" type="checkbox" />No Keys</input>
<br>
<input id="no-coords-check" type="checkbox" />No Window Coords</input>
<br>
Total key events:
<span id="total-key-count">-</span>
<div id="json-target"></div>
</body>
</html>