-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathviewer.html
More file actions
32 lines (32 loc) · 1.1 KB
/
Copy pathviewer.html
File metadata and controls
32 lines (32 loc) · 1.1 KB
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>
<head>
<meta charset="utf-8">
<title>JSON Keeper</title>
<link rel="stylesheet" href="tokens.css">
<link rel="stylesheet" href="viewer.css">
<script src="theme-boot.js"></script>
</head>
<body class="jk-page">
<!-- The whole page is the viewer. Its left pane is the editable source, so there's no separate
paste box on top anymore — an empty box just opens the viewer ready to be typed into. -->
<div id="app" class="jk-fullmount"></div>
<script src="jsonbig.js"></script>
<script src="util.js"></script>
<script src="tree.js"></script>
<script src="jsonpath.js"></script>
<script src="toolbar.js"></script>
<script src="search.js"></script>
<script src="query.js"></script>
<script src="table.js"></script>
<script src="schema-infer.js"></script>
<script src="schema-validate.js"></script>
<script src="panel.js"></script>
<script src="split.js"></script>
<script src="export-panel.js"></script>
<script src="rail.js"></script>
<script src="status.js"></script>
<script src="core.js"></script>
<script src="viewer.js"></script>
</body>
</html>