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

Unified Diff: popup.js

Issue 29452181: Noissue - Merge current tip to Edge bookmark (Closed)
Patch Set: Created May 30, 2017, 3:49 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
« no previous file with comments | « popup.html ('k') | qunit/.eslintrc.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: popup.js
===================================================================
--- a/popup.js
+++ b/popup.js
@@ -1,6 +1,6 @@
/*
* This file is part of Adblock Plus <https://adblockplus.org/>,
- * Copyright (C) 2006-2016 Eyeo GmbH
+ * Copyright (C) 2006-2017 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
@@ -49,10 +49,10 @@
);
}
- // Ask content script whether clickhide is active. If so, show cancel button.
- // If that isn't the case, ask background.html whether it has cached filters. If so,
- // ask the user whether she wants those filters.
- // Otherwise, we are in default state.
+ // Ask content script whether clickhide is active. If so, show
+ // cancel button. If that isn't the case, ask background.html
+ // whether it has cached filters. If so, ask the user whether she
+ // wants those filters. Otherwise, we are in default state.
if (page)
{
if (checkWhitelisted(page))
@@ -66,9 +66,15 @@
}
});
- document.getElementById("enabled").addEventListener("click", toggleEnabled, false);
- document.getElementById("clickhide").addEventListener("click", activateClickHide, false);
- document.getElementById("clickhide-cancel").addEventListener("click", cancelClickHide, false);
+ document.getElementById("enabled").addEventListener(
+ "click", toggleEnabled, false
+ );
+ document.getElementById("clickhide").addEventListener(
+ "click", activateClickHide, false
+ );
+ document.getElementById("clickhide-cancel").addEventListener(
+ "click", cancelClickHide, false
+ );
document.getElementById("options").addEventListener("click", () =>
{
ext.showOptions();
@@ -79,7 +85,11 @@
{
collapser.addEventListener("click", toggleCollapse, false);
if (!Prefs[collapser.dataset.option])
- document.getElementById(collapser.dataset.collapsable).classList.add("collapsed");
+ {
+ document.getElementById(
+ collapser.dataset.collapsable
+ ).classList.add("collapsed");
+ }
}
}
« no previous file with comments | « popup.html ('k') | qunit/.eslintrc.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld