| Index: chrome/content/ui/popup.html |
| =================================================================== |
| new file mode 100644 |
| --- /dev/null |
| +++ b/chrome/content/ui/popup.html |
| @@ -0,0 +1,68 @@ |
| +<!DOCTYPE html> |
| + |
| +<!-- |
| + - This file is part of Adblock Plus <http://adblockplus.org/>, |
| + - Copyright (C) 2006-2014 Eyeo GmbH |
| + - |
| + - Adblock Plus is free software: you can redistribute it and/or modify |
| + - it under the terms of the GNU General Public License version 3 as |
| + - published by the Free Software Foundation. |
| + - |
| + - Adblock Plus is distributed in the hope that it will be useful, |
| + - but WITHOUT ANY WARRANTY; without even the implied warranty of |
| + - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| + - GNU General Public License for more details. |
| + - |
| + - You should have received a copy of the GNU General Public License |
| + - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| + --> |
| + |
| +<html> |
| +<head> |
| + <link rel="stylesheet" type="text/css" href="/skin/popup.css"> |
| + <script type="application/javascript;version=1.7" 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
|
| + <script type="application/javascript;version=1.7" src="ext/common.js"></script> |
| + <script type="application/javascript;version=1.7" src="ext/popup.js"></script> |
| + <script type="application/javascript;version=1.7" src="i18n.js"></script> |
| + <script src="popup.js"></script> |
| +</head> |
| +<!-- Set tabindex to work around Chromium issue 304532 --> |
| +<!-- Set overflow to hidden in order to prevent Safari showing scrollbars while loading --> |
| +<body tabindex="1" style="overflow: hidden;"> |
| + |
| +<header> |
| + <div id="logo"></div> |
| +</header> |
| + |
| +<div id="wrapper"> |
| + <div id="clickhide-instructions" class="i18n_clickhide_instructions"></div> |
| + |
| + <ul id="menu"> |
| + <li id="clickhide" class="menu-item" role="button" hidden> |
| + <div class="icon"></div> |
| + <span class="i18n_easy_create_filter"></span> |
| + </li> |
| + <li id="clickhide-cancel" class="menu-item" role="button" hidden> |
| + <div class="icon"></div> |
| + <span class="i18n_cancel"></span> |
| + </li> |
| + |
| + <li id="blockable" class="menu-item" role="button" hidden> |
| + <div class="icon"></div> |
| + <span class="i18n_blockable_items"></span> |
| + </li> |
| + |
| + <li id="report-issue" class="menu-item" role="button" hidden> |
| + <div class="icon"></div> |
| + <span class="i18n_report_issue"></span> |
| + </li> |
| + </ul> |
| +</div> |
| + |
| +<footer id="options" role="button"> |
| + <div class="icon"></div> |
| + <span class="i18n_options_short"></span> |
| +</footer> |
| + |
| +</body> |
| +</html> |