| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <!-- | |
| 3 - This file is part of Adblock Plus <https://adblockplus.org/>, | |
| 4 - Copyright (C) 2006-2017 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 <menu> | |
| 67 <button class="i18n_mops_filterlist_add_url" | |
|
saroyanm
2017/08/27 17:44:00
Button inside of menu has not been implemented yet
Thomas Greiner
2017/08/28 12:04:20
This is not what's mentioned in the link you refer
saroyanm
2017/08/28 12:27:19
Right, I found that link after this failed the HTM
Thomas Greiner
2017/08/28 13:14:04
Ok, that makes sense. Sounds similar to putting `<
| |
| 68 data-action="open-dialog" data-dialog="subscribe"> | |
| 69 </button> | |
| 70 </menu> | |
| 71 </div> | |
| 72 | |
| 73 <div id="dialog-subscribe" role="dialog"> | |
| 74 <form> | |
| 75 <h2 class="i18n_mops_subscribe_header"></h2> | |
| 76 <p> | |
| 77 <input name="title" type="text"> | |
| 78 <label class="i18n_mops_subscribe_title"></label> | |
| 79 <span class="i18n_mops_error_title error" data-error="title"></span> | |
| 80 </p> | |
| 81 | |
| 82 <p> | |
| 83 <input name="url" type="text"> | |
| 84 <label class="i18n_mops_subscribe_url"></label> | |
| 85 <span class="i18n_mops_error_url error" data-error="url"></span> | |
| 86 </p> | |
| 87 | |
| 88 <button type="submit" | |
| 89 class="i18n_mops_filterlist_add_action primary"> | |
| 90 </button> | |
| 91 | |
| 92 <button type="reset" class="i18n_mops_action_cancel secondary" | |
| 93 data-action="close-dialog"> | |
| 94 </button> | |
| 95 </form> | |
| 96 </div> | |
| 97 </div> | |
| 98 | |
| 99 </body> | |
| 100 </html> | |
| OLD | NEW |