-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpopup.html
More file actions
103 lines (99 loc) · 3.2 KB
/
popup.html
File metadata and controls
103 lines (99 loc) · 3.2 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!doctype html>
<html>
<head>
<title>JukeBot</title>
<link href="./styles.css" rel="stylesheet" type="text/css">
<script src="./scripts/popup/popup.js" type="text/javascript"></script>
<script src="./scripts/popup/Animator.js" type="text/javascript"></script>
</head>
<body>
<div class="header">
<h1>JukeBot</h1>
</div>
<table id="song-display">
<tr>
<td>
<div id="downvote" class="thumb downvote">
<img src="./icons/thumbs_down24.png" draggable="false" />
</div>
</td>
<td>
<div class="no-select">
<div id="song-title">Africa</div>
<div id="artists">Toto</div>
<div id="played-by"><i>Played by <span id="dj">Hawk</span></i></div>
</div>
<div id="progress-bar" class="progress-bar">
<div id="progress-fill" class="progress-fill"></div>
</div>
</td>
<td>
<div id="upvote" class="thumb upvote">
<img src="./icons/thumbs_up24.png" draggable="false" />
</div>
</td>
</tr>
</table>
<table class="script-list">
<tr>
<td>
<span id="auto-doot-title" class="script-title">Auto Vote</span>
</td>
<td>
<label for="voteType">Automatically vote for every song: </label>
<select name="voteType" id="voteType">
<option value="upvote">Upvote</option>
<option value="boofstar">Boofstar</option>
<option value="downvote">Downvote :(</option>
</select>
</td>
<td></td>
<td>
<label class="switch">
<input id="auto-doot-checkbox" type="checkbox">
<span class="slider"></span>
</label>
</td>
</tr>
<tr>
<td>
<span id="notifier-title" class="script-title">Notifier</span>
</td>
<td>
Get a notification whenever you're mentioned in the JQBX chat.
</td>
<td>
<img id="notifier-settings" src="./icons/cog16.png" class="settings-icon" draggable="false" />
</td>
<td>
<label class="switch">
<input id="notifier-checkbox" type="checkbox">
<span class="slider"></span>
</label>
</td>
</tr>
</table>
<div id="options-container" class="options-container">
<div id="notifier-options" class="options">
<h3>Notifier Options</h3>
<div>
<label class="switch-text">Notify me about all new messages</label>
<label class="switch">
<input id="notifier-show-all" type="checkbox">
<span class="slider"></span>
</label>
</div>
<div>
<label class="switch-text">Notify me about room alerts</label>
<label class="switch">
<input id="notifier-show-alerts" type="checkbox">
<span class="slider"></span>
</label>
</div>
</div>
</div>
<div id="created-by">
<i>Created by Hawk, patched by Darin</i>
</div>
</body>
</html>