Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: mobile-options.html

Issue 29488575: Issue 5384 - Introduced dedicated mobile options page (Closed)
Patch Set: Added ID constants Created Aug. 28, 2017, 2:51 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « messageResponder.js ('k') | mobile-options.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <!--
3 - This file is part of Adblock Plus <https://adblockplus.org/>,
4 - Copyright (C) 2006-present eyeo GmbH
5 -
6 - Adblock Plus is free software: you can redistribute it and/or modify
7 - it under the terms of the GNU General Public License version 3 as
8 - published by the Free Software Foundation.
9 -
10 - Adblock Plus is distributed in the hope that it will be useful,
11 - but WITHOUT ANY WARRANTY; without even the implied warranty of
12 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 - GNU General Public License for more details.
14 -
15 - You should have received a copy of the GNU General Public License
16 - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
17 -->
18 <html>
19 <head>
20 <title class="i18n_mops_title"></title>
21 <meta charset="utf-8">
22 <meta name="viewport" content="width=device-width, initial-scale=1.0, minimu m-scale=1.0">
23 <link rel="stylesheet" type="text/css" href="skin/mobile-options.css">
24 <script src="ext/common.js"></script>
25 <script src="ext/content.js"></script>
26 <script src="common.js"></script>
27 <script src="i18n.js"></script>
28 <script src="mobile-options.js" defer></script>
29 </head>
30 <body>
31
32 <main>
33 <h1 class="i18n_mops_title"></h1>
34
35 <p id="enabled-container" class="toggle-container" hidden>
36 <span>
37 <label id="enabled-label" for="enabled"></label>
38 </span>
39 <input id="enabled" type="checkbox" data-action="toggle-enabled">
40 <label class="toggle-image" for="enabled"></label>
41 </p>
42
43 <h2 class="i18n_mops_subscriptions_header"></h2>
44
45 <ul id="subscriptions-installed"></ul>
46 <button class="i18n_mops_filterlist_add"
47 data-action="open-dialog" data-dialog="recommended">
48 </button>
49
50 <p class="toggle-container">
51 <span>
52 <label class="i18n_mops_acceptableAds_description checkbox"
53 for="acceptableAds">
54 </label>
55 <a id="acceptableAds-more" class="i18n_mops_acceptableAds_more"></a>
56 </span>
57 <input id="acceptableAds" type="checkbox">
58 <label class="toggle-image" for="acceptableAds"></label>
59 </p>
60 </main>
61
62 <div id="dialog" data-action="close-dialog">
63 <div id="dialog-recommended" role="dialog">
64 <ul id="subscriptions-recommended"></ul>
65
66 <button class="i18n_mops_filterlist_add_url"
67 data-action="open-dialog" data-dialog="subscribe">
68 </button>
69 </div>
70
71 <div id="dialog-subscribe" role="dialog">
72 <form>
73 <h2 class="i18n_mops_subscribe_header"></h2>
74 <p>
75 <input name="title" type="text">
76 <label class="i18n_mops_subscribe_title"></label>
77 <span class="i18n_mops_error_title error" data-error="title"></span>
78 </p>
79
80 <p>
81 <input name="url" type="text">
82 <label class="i18n_mops_subscribe_url"></label>
83 <span class="i18n_mops_error_url error" data-error="url"></span>
84 </p>
85
86 <button type="submit"
87 class="i18n_mops_filterlist_add_action primary">
88 </button>
89
90 <button type="reset" class="i18n_mops_action_cancel secondary"
91 data-action="close-dialog">
92 </button>
93 </form>
94 </div>
95 </div>
96
97 </body>
98 </html>
OLDNEW
« no previous file with comments | « messageResponder.js ('k') | mobile-options.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld