-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 966 Bytes
/
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
<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>ModaW</title>
<script src="./index.js"></script>
<script src="./register.js"></script>
<script src="./connect.js"></script>
<script src="./nodes/gain.js"></script>
<script src="./nodes/osc.js"></script>
<script src="./nodes/sequencer.js"></script>
<script src="./nodes/clock.js"></script>
<script src="./nodes/controller.js"></script>
<script src="./presets/patch-1.js"></script>
<script src="./presets/patch-2.js"></script>
<script src="./presets/patch-3.js"></script>
<link rel="stylesheet" href="main.css">
</head>
<body id="body">
<div id="editor-outer">
<div id="select-preset-wrapper">
<select id="select-preset"></select>
<button id="button-load">Load</button>
</div>
<textarea id="editor">
</textarea>
<button id="button-run">Run</button>
</div>
<div id="content">
</div>
</body>
</html>