-
Notifications
You must be signed in to change notification settings - Fork 1
/
controller.html
33 lines (32 loc) · 1.93 KB
/
controller.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
<!DOCTYPE html>
<!-- /* ---------------------------------------------------------------------------------------
This jsaSound Code is distributed under LGPL 3
Copyright (C) 2012 National University of Singapore
Inquiries: [email protected]
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or any later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNULesser General Public License for more details.
You should have received a copy of the GNU General Public License and GNU Lesser General Public License along with this program. If not, see <http://www.gnu.org/licenses/>
------------------------------------------------------------------------------------------*/ -->
<html>
<!-- Kumar Subramanian (http://nishabdam.com) is the Guru responsible for the party node.js architecture! -->
<head>
<title>jsaBard · Controller</title>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<link rel="stylesheet" type="text/css" href="css/controller.css">
<script type="text/javascript">
// Will this work everywhere?
var jsaHost="/";
</script>
<script type="text/javascript" data-main="scripts/controller.js" src="scripts/require.js" ></script>
</head>
<body>
<div id="connectorContainer">
<p>Enter the 9-letter code from your Synth to load the controller. (If you haven't opened a synth, <a href="/">open it</a> on a non-mobile device with Google Chrome.)</p>
<input disabled type="text" id="partyName" placeholder="Synth Code" />
<button disabled id="partyButton">Load</button>
</div>
<div hidden id="app">
</div>
</body>
</html>