-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
62 lines (58 loc) · 1.92 KB
/
options.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
<!DOCTYPE html>
<html>
<head>
<title>Mediathread Options</title>
<style>
.hidden {
display: none;
}
.radio label {
width: 100%;
}
form input[type="radio"] {
margin-right: 5px;
}
form input[type="text"] {
margin-left: 5px;
width: 75%;
}
</style>
</head>
<body>
<h3>Mediathread URL</h3>
<form>
<div class="radio">
<label>
<input type="radio" name="host_url" id="host_url_prod"
value="https://mediathread.ctl.columbia.edu" checked>
https://mediathread.ctl.columbia.edu
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="host_url" id="host_url_stage"
value="https://mediathread.stage.ctl.columbia.edu">
https://mediathread.stage.ctl.columbia.edu
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="host_url" id="host_url_custom"
value="other">
Other: <input name="custom_url"
type="text"
value=""
disabled
autocomplete="off"
autocapitalize="off"
autocorrect="off"
spellcheck="false" />
</label>
</div>
</form>
<div id="infospace" class="hidden">Saved.</div>
<script src="lib/underscore-min.js"></script>
<script src="lib/jquery-3.5.1.min.js"></script>
<script src="src/options.js"></script>
</body>
</html>