-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
63 lines (51 loc) · 2.28 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
57
58
59
60
61
62
63
<!-- XXX adding doctype html breaks layout... that's not good -->
<html lang='en'>
<head>
<meta charset='utf-8'>
<title>Gibberwocky</title>
<link href='css/codemirror.css' rel='stylesheet'>
<link href='css/show-hint.css' rel='stylesheet'>
<link href='css/tabs.microlib.css' rel='stylesheet'>
<link href='css/vanillatree.css' rel='stylesheet'>
<link href='css/gibber.css' rel='stylesheet'>
<script src='dist/index.js'></script>
</head>
<body>
<div id='editor'></div>
<div id='sidebar'>
<div id='splitbar'></div>
<div id='tabs' class='microlib_tabs'>
<div class="microlib_tabs_tab" data-title="console" >
<div id='console'></div>
</div>
<div class="microlib_tabs_tab" data-title="midi">
<div id='MIDIView'>
<label>select MIDI input:</label><br><select id='midiInputSelect'></select><br>
<label>select MIDI output:</label><br><select id='midiOutputSelect'></select><br>
<label>cc modulation output rate (in Hz):</label><br>
<input id='modulationRate' value=60></input><br>
<h4>clock sync:</h4>
<input type='radio' id='internalSyncRadio' name='sync' checked>internal</input>
<input type='radio' id='clockSyncRadio' name='sync'>MIDI clock</input>
</div>
</div>
<div class="microlib_tabs_tab" data-title="demos">
<div id="demos"></div>
</div>
<div class="microlib_tabs_tab" data-title="help" >
<div id="help">
<p>For a complete description of the gibberwocky API,
see the <a href='http://gibberwocky.cc/reference'>gibberwocky reference</a>. Otherwise
the various tutorial are the best place to get started.
</p>
<p>For questions, answers, and announcements try the <a href="http://lurk.org/groups/gibber/">mailing list</a> or
the <a href="https://livecode.slack.com/messages/gibber/">gibber Slack channel</a> for more informal discussion. If you
aren't already a member of the Live Coding Slack group there's a <a href="http://live-code-slack.herokuapp.com">site that
generates automatic invites</a>.
</p>
</div>
</div>
</div>
</div>
</body>
</html>