-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (38 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'"
/>
<link rel="stylesheet" href="./jsonTree.css">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div id="dumps"></div>
<div id="spacer"></div>
<div id="buttons">
<div class="button" id="fold">
<strong>F</strong>old
</div>
<div class="button" id="last">
<strong>L</strong>ast
</div>
<div class="button" id="empty">
<strong>E</strong>mpty
</div>
<div class="button" id="autojump">
<strong>A</strong>utojump
<small id="autojump_status">Enabled</small>
</div>
<div class="button" id="interactive">
<strong>I</strong>nteractive
<small id="interactive_status">Disabled</small>
</div>
</div>
<div id="version"></div>
</body>
<script src="./jsonTree.js"></script>
<script src="./renderer.js"></script>
</html>