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

Unified Diff: lib/devtools.js

Issue 29492577: Noissue - Fix indentation errors for ESLint 4 (Closed) Base URL: https://hg.adblockplus.org/adblockpluschrome/
Patch Set: Target the release after 4.2.0 instead Created July 21, 2017, 9:43 a.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 | « no previous file | options.js » ('j') | options.js » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/devtools.js
===================================================================
--- a/lib/devtools.js
+++ b/lib/devtools.js
@@ -77,19 +77,21 @@
function hasRecord(panel, request, filter)
{
return panel.records.some(record =>
record.request.url == request.url &&
record.request.docDomain == request.docDomain &&
// Ignore partial (e.g. ELEMHIDE) whitelisting if there is already
// a DOCUMENT exception which disables all means of blocking.
- (record.request.type == "DOCUMENT" ?
- nonRequestTypes.includes(request.type) :
- record.request.type == request.type) &&
+ (
+ record.request.type == "DOCUMENT" ?
+ nonRequestTypes.includes(request.type) :
+ record.request.type == request.type
+ ) &&
// Matched element hiding filters don't relate to a particular request,
// so we have to compare the selector in order to avoid duplicates.
(record.filter && record.filter.selector) == (filter && filter.selector)
);
}
function addRecord(panel, request, filter)
« no previous file with comments | « no previous file | options.js » ('j') | options.js » ('J')

Powered by Google App Engine
This is Rietveld