Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: chrome/content/ui/popup.html

Issue 5294633391226880: issue 1435 - Port popup.html from Chrome/Safari/Opera to Firefox (Closed)
Patch Set: Created Oct. 27, 2014, 9:40 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/content/ui/popup.html
===================================================================
new file mode 100644
--- /dev/null
+++ b/chrome/content/ui/popup.html
@@ -0,0 +1,69 @@
+<!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 src="utils.js"></script>
+ <script src="ext/common.js"></script>
+ <script src="ext/popup.js"></script>
+ <script 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_open_blockable_items" data-action="open"></span>
+ <span class="i18n_close_blockable_items" data-action="close"></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>

Powered by Google App Engine
This is Rietveld