| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <!-- | 3 <!-- |
| 4 - This file is part of Adblock Plus <https://adblockplus.org/>, | 4 - This file is part of Adblock Plus <https://adblockplus.org/>, |
| 5 - Copyright (C) 2006-2016 Eyeo GmbH | 5 - Copyright (C) 2006-2016 Eyeo GmbH |
| 6 - | 6 - |
| 7 - Adblock Plus is free software: you can redistribute it and/or modify | 7 - Adblock Plus is free software: you can redistribute it and/or modify |
| 8 - it under the terms of the GNU General Public License version 3 as | 8 - it under the terms of the GNU General Public License version 3 as |
| 9 - published by the Free Software Foundation. | 9 - published by the Free Software Foundation. |
| 10 - | 10 - |
| 11 - Adblock Plus is distributed in the hope that it will be useful, | 11 - Adblock Plus is distributed in the hope that it will be useful, |
| 12 - but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 - but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 13 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 - GNU General Public License for more details. | 14 - GNU General Public License for more details. |
| 15 - | 15 - |
| 16 - You should have received a copy of the GNU General Public License | 16 - You should have received a copy of the GNU General Public License |
| 17 - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 17 - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| 18 --> | 18 --> |
| 19 | 19 |
| 20 <html> | 20 <html> |
| 21 <head> | 21 <head> |
| 22 <link rel="stylesheet" type="text/css" href="skin/popup.css"> | 22 <link rel="stylesheet" type="text/css" href="skin/popup.css"> |
| 23 <script src="ext/popup.js"></script> | 23 <script src="ext/popup.js"></script> |
| 24 <script src="i18n.js"></script> | 24 <script src="i18n.js"></script> |
| 25 <script src="popup.js"></script> | 25 <script src="popup.js"></script> |
| 26 <script src="notification.js"></script> | 26 <script src="notification.js"></script> |
| 27 <script src="stats.js"></script> | 27 <script src="stats.js"></script> |
| 28 </head> | 28 </head> |
| 29 <!-- Set tabindex to work around Chromium issue 304532 --> | 29 <!-- Set tabindex to work around Chromium issue 304532 --> |
| 30 <!-- Set overflow to hidden in order to prevent Safari showing scrollbars while
loading --> | 30 <body tabindex="1"> |
| 31 <body tabindex="1" style="overflow: hidden;"> | |
| 32 | 31 |
| 33 <header> | 32 <header> |
| 34 <img id="logo" src="icons/detailed/abp-64.png" srcset="icons/detailed/abp-128.
png 2x"> | 33 <img id="logo" src="icons/detailed/abp-64.png" srcset="icons/detailed/abp-128.
png 2x"> |
| 35 </header> | 34 </header> |
| 36 | 35 |
| 37 <div id="wrapper"> | 36 <div id="wrapper"> |
| 38 <div id="notification" hidden> | 37 <div id="notification" hidden> |
| 39 <div id="notification-content"> | 38 <div id="notification-content"> |
| 40 <h1> | 39 <h1> |
| 41 <span id="notification-title"></span> | 40 <span id="notification-title"></span> |
| (...skipping 24 matching lines...) Expand all Loading... |
| 66 </li> | 65 </li> |
| 67 <li id="clickhide-cancel" class="menu-item" role="button"> | 66 <li id="clickhide-cancel" class="menu-item" role="button"> |
| 68 <div class="icon"></div> | 67 <div class="icon"></div> |
| 69 <span class="i18n_cancel"></span> | 68 <span class="i18n_cancel"></span> |
| 70 </li> | 69 </li> |
| 71 | 70 |
| 72 <li id="stats-container"> | 71 <li id="stats-container"> |
| 73 <div class="menu-item collapse" data-option="show_statsinpopup" data-colla
psable="stats-container" role="button"> | 72 <div class="menu-item collapse" data-option="show_statsinpopup" data-colla
psable="stats-container" role="button"> |
| 74 <div class="icon"></div> | 73 <div class="icon"></div> |
| 75 <span class="i18n_stats_title"></span> | 74 <span class="i18n_stats_title"></span> |
| 76 <div class="collapse-icon-placeholder safari-inline-block"></div> | 75 <div class="collapse-icon-placeholder"></div> |
| 77 <div class="collapse-icon"></div> | 76 <div class="collapse-icon"></div> |
| 78 </div> | 77 </div> |
| 79 <ul id="stats" class="collapsable"> | 78 <ul id="stats" class="collapsable"> |
| 80 <li> | 79 <li> |
| 81 <div> | 80 <div> |
| 82 <div id="stats-page"></div> | 81 <div id="stats-page"></div> |
| 83 <div id="stats-total"></div> | 82 <div id="stats-total"></div> |
| 84 </div> | 83 </div> |
| 85 | 84 |
| 86 <div id="share"> | 85 <div id="share"> |
| (...skipping 14 matching lines...) Expand all Loading... |
| 101 </ul> | 100 </ul> |
| 102 </div> | 101 </div> |
| 103 | 102 |
| 104 <footer id="options" role="button"> | 103 <footer id="options" role="button"> |
| 105 <div class="icon"></div> | 104 <div class="icon"></div> |
| 106 <span class="i18n_options_short"></span> | 105 <span class="i18n_options_short"></span> |
| 107 </footer> | 106 </footer> |
| 108 | 107 |
| 109 </body> | 108 </body> |
| 110 </html> | 109 </html> |
| OLD | NEW |