forked from adblockplus/adblockplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mobile-options.html
109 lines (96 loc) · 3.78 KB
/
mobile-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
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
104
105
106
107
108
109
<!DOCTYPE html>
<!--
- This file is part of Adblock Plus <https://adblockplus.org/>,
- Copyright (C) 2006-present eyeo GmbH
-
- Adblock Plus is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License version 3 as
- published by the Free Software Foundation.
-
- Adblock Plus is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
-->
<html>
<head>
<title data-i18n="mops_title"></title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" type="text/css" href="skin/fonts/font.css">
<link rel="stylesheet" type="text/css" href="skin/mobile-options.css">
<script src="polyfill.js"></script>
<script src="ext/common.js"></script>
<script src="ext/content.js"></script>
<script src="common.js"></script>
<script src="i18n.js"></script>
<script src="mobile-options.js" defer></script>
</head>
<body>
<main>
<h1 data-i18n="mops_title"></h1>
<p id="enabled-container" class="toggle-container" hidden>
<span>
<label id="enabled-label" for="enabled">
<strong data-i18n="mops_enabled_label"></strong>
<span id="enabled-domain"></span>
</label>
</span>
<input id="enabled" type="checkbox" data-action="toggle-enabled">
<label class="toggle-image" for="enabled"></label>
</p>
<h2 data-i18n="mops_subscriptions_header"></h2>
<ul id="subscriptions-installed"></ul>
<button data-i18n="mops_filterlist_add" class="add"
data-action="open-dialog" data-dialog="recommended">
</button>
<p class="toggle-container">
<span>
<label data-i18n="mops_acceptableAds_description" class="checkbox"
for="acceptableAds">
</label>
<a id="acceptableAds-more" data-i18n="mops_acceptableAds_more" data-doclink="acceptable_ads"></a>
</span>
<input id="acceptableAds" type="checkbox">
<label class="toggle-image" for="acceptableAds"></label>
</p>
<footer>
<a id="privacy-policy" data-i18n="issueReporter_privacyPolicy" target="_blank"></a>
<a id="imprint" target="_blank">eyeo GmbH</a>
</footer>
</main>
<div id="dialog" data-action="close-dialog">
<div id="dialog-recommended" role="dialog">
<ul id="subscriptions-recommended"></ul>
<button data-i18n="mops_filterlist_add_url" class="add"
data-action="open-dialog" data-dialog="subscribe">
</button>
</div>
<div id="dialog-subscribe" role="dialog">
<form>
<h2 data-i18n="mops_subscribe_header"></h2>
<p>
<input name="title" type="text"
data-i18n-placeholder="mops_subscribe_title">
<label data-i18n="mops_subscribe_title"></label>
</p>
<p>
<input name="url" type="text"
data-i18n-placeholder="mops_subscribe_url">
<label data-i18n="mops_subscribe_url"></label>
<span data-i18n="mops_error_url" class="error" data-error="url"></span>
</p>
<button type="submit"
data-i18n="mops_filterlist_add_action" class="primary">
</button>
<button type="reset" data-i18n="mops_action_cancel" class="secondary"
data-action="close-dialog">
</button>
</form>
</div>
</div>
</body>
</html>