-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
38 lines (33 loc) · 1.33 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JSON Editor</title>
<link rel="shortcut icon" type="image/x-icon" href="icon.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="styles/new-clean.css">
</head>
<body>
<!-- SCRIPTS -->
<script src="scripts/minify.json.js"></script>
<script src="scripts/utilities.js"></script>
<script src="scripts/parser.js"></script>
<script src="scripts/highlighter.js"></script>
<script src="scripts/documentation.js"></script>
<script src="scripts/main.js"></script>
<script src="scripts/documentationParser.js"></script>
<script src="scripts/autoCompletions.js"></script>
<script src="scripts/modules.js"></script>
<script src="scripts/extensions.js"></script>
<script src="scripts/fileRequester.js"></script>
<script src="scripts/treeManager.js"></script>
<script src="scripts/tabSystem.js"></script>
<script src="scripts/editBar.js"></script>
<script>
var app = new Application();
app.start();
</script>
</body>
</html>