-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
56 lines (43 loc) · 1.29 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
<html>
<head>
<script src="./module.js"></script>
<script src="./Utilities.js"></script>
<script src="./canaryPolyfillMIDIAccess.js"></script>
<script src="./Synesthesia.js"></script>
<link rel="stylesheet" href="./Synesthesia.css" />
<script src="./Synesthesia.Graph.js"></script>
<script src="./Synesthesia.UI.js"></script>
<link rel="stylesheet" href="./Synesthesia.UI.css" />
<script src="./Synesthesia.UILibrary.js"></script>
<link rel="stylesheet" href="./Synesthesia.UILibrary.css" />
<script src="./Synesthesia.WindowSystem.js"></script>
<link rel="stylesheet" href="./Synesthesia.WindowSystem.css" />
<script src="./Synesthesia.NodeLibrary.js"></script>
<script src="./Synesthesia.Envelope.js"></script>
<style type="text/css">
body {
margin: 0px;
padding: 0px;
}
#SynesthesiaUIContainer {
position: relative;
overflow: hidden;
width: 100%;
height: 100%;
}
</style>
<script type="application/javascript">
window.addEventListener("load", function () {
module.declare("MAIN", ["Synesthesia"], function () {
var Synesthesia = module.require("Synesthesia");
MainSynesthesia = new Synesthesia({
container: document.getElementById("SynesthesiaUIContainer"),
});
});
}, false);
</script>
</head>
<body>
<div id="SynesthesiaUIContainer"></div>
</body>
</html>