LEFT | RIGHT |
(no file at all) | |
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-present eyeo GmbH | 5 - Copyright (C) 2006-present 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 18 matching lines...) Expand all Loading... |
29 } | 29 } |
30 | 30 |
31 #content | 31 #content |
32 { | 32 { |
33 border: none; | 33 border: none; |
34 position: fixed; | 34 position: fixed; |
35 width: 100%; | 35 width: 100%; |
36 height: 100%; | 36 height: 100%; |
37 } | 37 } |
38 </style> | 38 </style> |
| 39 <script src="polyfill.js"></script> |
39 <script src="options.js" defer></script> | 40 <script src="options.js" defer></script> |
40 </head> | 41 </head> |
41 <body> | 42 <body> |
42 <iframe id="content" data-src="desktop-options.html" data-src-fennec="mobile
-options.html"></iframe> | 43 <iframe id="content" data-src="desktop-options.html" data-src-fennec="mobile
-options.html"></iframe> |
43 </body> | 44 </body> |
44 </html> | 45 </html> |
LEFT | RIGHT |