-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
52 lines (50 loc) · 2.16 KB
/
Copy pathoptions.html
File metadata and controls
52 lines (50 loc) · 2.16 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
<!doctype html>
<html>
<head>
<meta charset="utf8">
<title>Savior options</title>
<link href="././css/options.css" rel="stylesheet"></head>
<body class="body">
<div id="options"></div>
<script type="text/mustache-template" id="options-template">
<div class="form">
<label class="checkbox">
<input type="checkbox" id="on-page-buttons" {{#onPageButtonsEnabled}}checked{{/onPageButtonsEnabled}}>
{{i18n_show_on_page_buttons}}
</label>
<label class="checkbox {{^onPageButtonsEnabled}}disabled{{/onPageButtonsEnabled}}">
<input type="checkbox" id="detach-button" {{^onPageButtonsEnabled}}disabled{{/onPageButtonsEnabled}}
{{#detachButtonEnabled}}checked{{/detachButtonEnabled}}>
{{i18n_show_detach_button}}
</label>
<br>
<label class="checkbox">
<input type="checkbox" id="one-click-download" {{#isOneClickEnabled}}checked{{/isOneClickEnabled}}>
{{i18n_one_click}}
</label>
<br>
{{i18n_preferred_quality}}
{{#qLevels}}
<label class="radio">
<input type="radio" name="optionsRadios" value="{{qLevelName}}" {{#isChecked}}checked{{/isChecked}}>
{{i18n_ql_title}}
</label>
{{/qLevels}}
<br>
<label class="checkbox">
<input type="checkbox" id="show-3gp-ext" {{#show3gpExt}}checked{{/show3gpExt}}>
{{i18n_show_3gp}}
</label>
<br>
<label class="checkbox">
<input type="checkbox" id="prefer-last-quality" {{#preferLastQuality}}checked{{/preferLastQuality}}>
{{i18n_prefer_last_quality}}
</label>
<label id="min-stream-label">{{i18n_min_stream_szie}}</label>
<input type="range" id="min-stream-size" min="0" max="3048000" value="{{minStreamSize}}" style="width: 300px">
<span id="min-stream-size-value">{{minStreamSizeValue}}</span>
</div>
<span class="btn close-button" id="button">{{i18n_save_and_close}}</span>
</script>
<script type="text/javascript" src="./common/common.js"></script><script type="text/javascript" src="./options/options.js"></script></body>
</html>