-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 1.07 KB
/
index.html
File metadata and controls
29 lines (29 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JSON Structure Comparer</title>
<script src="https://d3js.org/d3.v7.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.39.0/min/vs/loader.min.js"></script>
<link rel="stylesheet" href="css/index.css" />
<link rel="stylesheet" href="css/editor.css" />
</head>
<body>
<h1>JSON Structure Comparer</h1>
<div id="editorContainer">
<div id="editor1" class="editor"></div>
<div id="editor2" class="editor"></div>
</div>
<button id="compareButton">Compare JSONs</button>
<div id="charts">
<div id="tree1" style="width: 50%; height: 600px; float: left;"></div>
<div id="tree2" style="width: 50%; height: 600px; float: left;"></div>
</div>
<div id="nodeDetails">
<strong>Node Details:</strong> <span id="details"></span>
</div>
<script src="js/utils.js"></script>
<script src="js/index.js"></script>
</body>
</html>