| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <!-- | 3 <!-- |
| 4 - This file is part of Adblock Plus <http://adblockplus.org/>, | 4 - This file is part of Adblock Plus <http://adblockplus.org/>, |
| 5 - Copyright (C) 2006-2013 Eyeo GmbH | 5 - Copyright (C) 2006-2013 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 - |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 margin-top: 5px; | 111 margin-top: 5px; |
| 112 } | 112 } |
| 113 </style> | 113 </style> |
| 114 | 114 |
| 115 <script type="text/javascript" src="jquery-ui/js/jquery-1.7.1.min.js"></script> | 115 <script type="text/javascript" src="jquery-ui/js/jquery-1.7.1.min.js"></script> |
| 116 <script type="text/javascript" src="i18n.js"></script> | 116 <script type="text/javascript" src="i18n.js"></script> |
| 117 <script type="text/javascript" src="popup.js"></script> | 117 <script type="text/javascript" src="popup.js"></script> |
| 118 <script type="text/javascript" src="notification.js"></script> | 118 <script type="text/javascript" src="notification.js"></script> |
| 119 <script type="text/javascript" src="stats.js"></script> | 119 <script type="text/javascript" src="stats.js"></script> |
| 120 </head> | 120 </head> |
| 121 <body id="main"> | 121 <!-- Set tabindex to work around Chromium issue 304532 --> |
| 122 <body id="main" tabindex="1"> |
| 122 <div id="notification" style="display: none"> | 123 <div id="notification" style="display: none"> |
| 123 <h1 id="title"></h1> | 124 <h1 id="title"></h1> |
| 124 <p id="message"></p> | 125 <p id="message"></p> |
| 125 </div> | 126 </div> |
| 126 | 127 |
| 127 <div id="enabledCheckboxAndLabel" style="display:none"><input id="enabled" type=
"checkbox" checked><label for="enabled"><span class="i18n_enabled_for_site"></sp
an></label></div> | 128 <div id="enabledCheckboxAndLabel" style="display:none"><input id="enabled" type=
"checkbox" checked><label for="enabled"><span class="i18n_enabled_for_site"></sp
an></label></div> |
| 128 <div id="clickHideInactiveStuff" style="display: none"> | 129 <div id="clickHideInactiveStuff" style="display: none"> |
| 129 <div class="spacer"></div> | 130 <div class="spacer"></div> |
| 130 <button id="clickHideButton" class="ui-button ui-widget ui-state-default ui-corn
er-all ui-button-text-only"><span class="i18n_easy_create_filter"></span></butto
n> | 131 <button id="clickHideButton" class="ui-button ui-widget ui-state-default ui-corn
er-all ui-button-text-only"><span class="i18n_easy_create_filter"></span></butto
n> |
| 131 </div> | 132 </div> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 148 <a class="i18n_stats_share_label_fb ui-button ui-widget ui-state-default u
i-corner-all" data-social="facebook"></a> | 149 <a class="i18n_stats_share_label_fb ui-button ui-widget ui-state-default u
i-corner-all" data-social="facebook"></a> |
| 149 <a id="shareTwitter" class="i18n_stats_share_label_twitter ui-button ui-wi
dget ui-state-default ui-corner-all" data-social="twitter"></a> | 150 <a id="shareTwitter" class="i18n_stats_share_label_twitter ui-button ui-wi
dget ui-state-default ui-corner-all" data-social="twitter"></a> |
| 150 <a id="shareGplus" class="i18n_stats_share_label_gplus ui-button ui-widget
ui-state-default ui-corner-all" data-social="gplus"></a> | 151 <a id="shareGplus" class="i18n_stats_share_label_gplus ui-button ui-widget
ui-state-default ui-corner-all" data-social="gplus"></a> |
| 151 </div> | 152 </div> |
| 152 </div> | 153 </div> |
| 153 </div> | 154 </div> |
| 154 | 155 |
| 155 </div> | 156 </div> |
| 156 </body> | 157 </body> |
| 157 </html> | 158 </html> |
| OLD | NEW |