-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
41 lines (36 loc) · 1.24 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="lib/jquery-ui/themes/smoothness/jquery-ui.css">
<link rel="stylesheet" href="styles.css">
<title>Csound for Chromebook</title>
</head>
<body>
<h2 id="title">please wait while Csound loads ...</h2>
<div id="controls">
<span id="leftControls">
<button id="newButton">New</button>
<button id="openButton">Open</button>
<button id="saveButton">Save</button>
<button id="saveAsButton">Save As ...</button>
</span>
<span id="rightControls">
<button id="playCsdButton">Play CSD</button>
</span>
</div>
<div id="tabs">
<ul>
<li><a href="#csound_output">Csound Output</a></li>
</ul>
<textarea id="csound_output"></textarea>
<div id="editor"></div>
</div>
<div id="engine"></div>
<script src="lib/ace/ace.js" type="text/javascript" charset="utf-8"></script>
<script src="lib/jquery/jquery.js" type="text/javascript" charset="utf-8"></script>
<script src="lib/jquery-ui/jquery-ui.js" type="text/javascript" charset="utf-8"></script>
<script src="csound.js" type="text/javascript" charset="utf-8"></script>
<script src="main.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>