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

Unified Diff: background.js

Issue 29374674: Issue 4864 - Start using ESLint for adblockpluschrome (Closed)
Patch Set: Use var for ext declarations again Created Feb. 8, 2017, 9:02 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
Index: background.js
diff --git a/background.js b/background.js
index 3df38b6b5797b9ecaae1b53b9f558db14b814242..b0d67832b9c1f98b65ce70e059663b78f6e6fa8b 100644
--- a/background.js
+++ b/background.js
@@ -45,7 +45,7 @@ port.on("get-selectors", (msg, sender) =>
selectors = [];
}
- return {selectors: selectors, trace: trace};
+ return {selectors, trace};
});
port.on("forward", (msg, sender) =>

Powered by Google App Engine
This is Rietveld