Left: | ||
Right: |
LEFT | RIGHT |
---|---|
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-2014 Eyeo GmbH | 5 - Copyright (C) 2006-2014 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 type="application/javascript;version=1.7" src="utils.js"></script> | 23 <script src="utils.js"></script> |
Thomas Greiner
2014/10/08 10:40:43
???
saroyanm
2014/10/10 12:05:58
utils.js are used to provide access to the ABP mod
Thomas Greiner
2014/10/13 13:18:23
You can ignore this comment, it got resolved in th
| |
24 <script type="application/javascript;version=1.7" src="ext/common.js"></script > | 24 <script src="ext/common.js"></script> |
25 <script type="application/javascript;version=1.7" src="ext/popup.js"></script> | 25 <script src="ext/popup.js"></script> |
26 <script type="application/javascript;version=1.7" src="i18n.js"></script> | 26 <script src="i18n.js"></script> |
27 <script src="popup.js"></script> | 27 <script src="popup.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 <!-- Set overflow to hidden in order to prevent Safari showing scrollbars while loading --> |
31 <body tabindex="1" style="overflow: hidden;"> | 31 <body tabindex="1" style="overflow: hidden;"> |
32 | 32 |
33 <header> | 33 <header> |
34 <div id="logo"></div> | 34 <div id="logo"></div> |
35 </header> | 35 </header> |
36 | 36 |
37 <div id="wrapper"> | 37 <div id="wrapper"> |
38 <div id="clickhide-instructions" class="i18n_clickhide_instructions"></div> | 38 <div id="clickhide-instructions" class="i18n_clickhide_instructions"></div> |
39 | 39 |
40 <ul id="menu"> | 40 <ul id="menu"> |
41 <li id="clickhide" class="menu-item" role="button" hidden> | 41 <li id="clickhide" class="menu-item" role="button" hidden> |
42 <div class="icon"></div> | 42 <div class="icon"></div> |
43 <span class="i18n_easy_create_filter"></span> | 43 <span class="i18n_easy_create_filter"></span> |
44 </li> | 44 </li> |
45 <li id="clickhide-cancel" class="menu-item" role="button" hidden> | 45 <li id="clickhide-cancel" class="menu-item" role="button" hidden> |
46 <div class="icon"></div> | 46 <div class="icon"></div> |
47 <span class="i18n_cancel"></span> | 47 <span class="i18n_cancel"></span> |
48 </li> | 48 </li> |
49 | 49 |
50 <li id="blockable" class="menu-item" role="button" hidden> | 50 <li id="blockable" class="menu-item" role="button" hidden> |
51 <div class="icon"></div> | 51 <div class="icon"></div> |
52 <span class="i18n_blockable_items"></span> | 52 <span class="i18n_open_blockable_items" data-action="open"></span> |
53 <span class="i18n_close_blockable_items" data-action="close"></span> | |
53 </li> | 54 </li> |
54 | 55 |
55 <li id="report-issue" class="menu-item" role="button" hidden> | 56 <li id="report-issue" class="menu-item" role="button" hidden> |
56 <div class="icon"></div> | 57 <div class="icon"></div> |
57 <span class="i18n_report_issue"></span> | 58 <span class="i18n_report_issue"></span> |
58 </li> | 59 </li> |
59 </ul> | 60 </ul> |
60 </div> | 61 </div> |
61 | 62 |
62 <footer id="options" role="button"> | 63 <footer id="options" role="button"> |
63 <div class="icon"></div> | 64 <div class="icon"></div> |
64 <span class="i18n_options_short"></span> | 65 <span class="i18n_options_short"></span> |
65 </footer> | 66 </footer> |
66 | 67 |
67 </body> | 68 </body> |
68 </html> | 69 </html> |
LEFT | RIGHT |