-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
78 lines (68 loc) · 2.11 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
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Big JSON Viewer Demo</title>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="../styles/default.css" />
<style type="text/css">
body {
font-family: Helvetica, serif;
}
</style>
</head>
<body>
<div
class="p-3"
style="position: fixed; top: 0; right: 0; background: white; border: 1px solid #ccc"
>
<input type="text" placeholder="Search" id="search" />
<span id="searchInfo"></span>
</div>
<div class="container">
<h1 class="mt-3">Big JSON Viewer Demo</h1>
<p>
Watch large JSON structures in the Browser.<br />
<a href="https://github.com/dhcode/big-json-viewer">On GitHub</a>
</p>
<h4 class="mt-3">JSON text</h4>
<div>
<a href="javascript:" data-load="simpleData">Simple test data</a> |
<a href="javascript:" data-load="largeData">Large data</a> |
<a href="javascript:" data-load="jsData">JavaScript data</a>
</div>
<div>
<textarea
id="code"
style="min-height: 15em; width: 100%; font-family: monospace, serif; font-size: 0.8em"
></textarea>
</div>
<h4 class="mt-3">Big JSON Viewer output</h4>
<div id="viewer"></div>
<h5 class="mt-3">Open paths</h5>
<div>
<textarea
id="paths"
style="min-height: 6em; width: 100%; font-family: monospace, serif; font-size: 0.8em"
></textarea>
</div>
<h5 class="mt-3">Copied paths</h5>
<div>
<input
type="text"
id="copied"
style="width: 100%; font-family: monospace, serif; font-size: 0.8em"
/>
</div>
<footer class="mt-5">
Created by <a href="https://github.com/dhcode">Dominik Herbst</a>
</footer>
</div>
<script src="demo.ts"></script>
</body>
</html>