-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaudio_scrollbar.html
52 lines (45 loc) · 1.94 KB
/
audio_scrollbar.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Collab Settings</title>
<meta name="description" content="Settings for the collaborative writing Google Docs extension">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="settings.css">
</head>
<body>
<a href="settings.html">Back</a>
<h1>Audio Scrollbar Settings</h1>
<br>
<fieldset>
<legend>Presentation Options</legend>
<br>
<input type="radio" id="as_segment_zero" name="as_segment">
<label for="as_segment_zero">Off</label><br>
<input type="radio" id="as_segment_one" name="as_segment">
<label for="as_segment_one">Paragraph Scrollbar</label><br>
<input type="radio" id="as_segment_two" name="as_segment">
<label for="as_segment_two">Line Scrollbar</label><br>
</fieldset>
<fieldset>
<legend>Scroll Bar Options</legend>
<br>
<input type="checkbox" id="as_comments" name="as_options">
<label for="as_comments">Comments</label><br>
<input type="checkbox" id="as_cursors" name="as_options">
<label for="as_cursors">Cursors</label><br>
<input type="checkbox" id="as_edits" name="as_options">
<label for="as_edits">Edits</label><br>
</fieldset>
<fieldset>
<legend>Scroll Bar Sound Options</legend>
<br>
<input type="radio" id="as_sound_pitch" name="as_sound">
<label for="as_sound_pitch">Pitch</label><br>
<input type="radio" id="as_sound_repeated" name="as_sound">
<label for="as_sound_repeated">Repeated Tone</label><br>
</fieldset>
<script src="audio_scrollbar_settings.js"></script>
<script src="settings.js"></script>
</body>
</html>