-
Notifications
You must be signed in to change notification settings - Fork 17
/
index.html
36 lines (36 loc) · 1.73 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
<html>
<head>
<title>Parser Designer</title>
</head>
<body>
<link rel="stylesheet" type="text/css" href="../sandbox/lib/codemirror.css" />
<link rel="stylesheet" type="text/css" href="../sandbox/lib/codemirror.show-hint.css" />
<script type="text/javascript" src="../sandbox/lib/codemirror.js"></script>
<script type="text/javascript" src="../sandbox/lib/superagent.min.js"></script>
<script type="text/javascript" src="../sandbox/lib/show-hint.js"></script>
<script type="text/javascript" src="../sandbox/lib/placeholder.js"></script>
<script type="text/javascript" src="../sandbox/lib/javascript.js"></script>
<script type="text/javascript" src="../sandbox/lib/FileSaver.min.js"></script>
<script type="text/javascript" src="../sandbox/lib/jszip.min.js"></script>
<script src="../products/Utils.browser.js"></script>
<script src="../products/Particle.browser.js"></script>
<script src="../products/Parsers.ts.browser.js"></script>
<script src="../products/ParsersCodeMirrorMode.browser.js"></script>
<script src="../products/stump.browser.js"></script>
<script src="../products/hakon.browser.js"></script>
<script src="../products/parsers.browser.js"></script>
<script src="../products/dumbdown.browser.js"></script>
<script src="../products/ParticleComponentFramework.browser.js"></script>
<script type="text/javascript" src="../products/DesignerApp.browser.js"></script>
<link rel="shortcut icon" type="image/x-icon" href="../images/favicon.ico" />
<script>
window.app = new DesignerApp(`headerComponent
samplesComponent
shareComponent
otherErrorsComponent
tableComponent
githubTriangleComponent`)
window.app.startWhenReady()
</script>
</body>
</html>