-
Notifications
You must be signed in to change notification settings - Fork 45
/
popup.html
71 lines (60 loc) · 2.12 KB
/
popup.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
64
65
66
67
68
69
70
71
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="css/popup.css" />
<script type="text/javascript" src="third_party/jquery/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="third_party/jquery/jquery-ui-1.8.20.sortable.min.js"></script>
<script type="text/javascript" src="third_party/jquery/jquery.urldecoder.min.js"></script>
<script type="text/javascript" src="third_party/fancy-settings/lib/store.js"></script>
<script type="text/javascript" src="scripts/profile.js"></script>
<script type="text/javascript" src="scripts/pages/common.js"></script>
<script type="text/javascript" src="third_party/jqplot/jquery.jqplot.js"></script>
<script type="text/javascript" src="third_party/jqplot/jqplot.barRenderer.js"></script>
<script type="text/javascript" src="third_party/jqplot/jqplot.pointLabels.js"></script>
<link rel="stylesheet" type="text/css" href="third_party/jqplot/jquery.jqplot.css" />
<script type="text/html" id="errors">
<![CDATA[
<li class="error">
<%= this.error %>
</li>
]]>
</script>
</head>
<body>
<div id="sabInfo">
<div id="sab-errors"></div>
<div>
Active Profile: <select id="profiles"></select>
</div>
<div class="col-left">
<span id="sab-status"></span><br />
<div id="sab-timeleft"></div>
</div>
<div class="col-right">
<div id="sab-speed"></div>
<span id="sab-sizeleft"></span>
</div>
<div class="float-fix"></div>
<div id="graph"></div>
<ul id="sab-queue"></ul>
</div>
<div class="menu">
<hr />
<div id="open_sabnzbd">Open SABnzbd</div>
<hr />
<div id="extension_settings">Extension Settings</div>
<hr />
<div id="refresh">Refresh</div>
<hr />
<div>
Max Speed: <input id="speed-input" type="text"/> % <button id="set-speed">Set</button>
</div>
<hr />
<div id="user_category" style="display:none;">
Override Category: <select id="userCategory"></select>
</div>
</div>
<script type="text/javascript" src="scripts/pages/popup.js"></script>
</body>
</html>