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

Unified Diff: chrome/devtools.js

Issue 29374674: Issue 4864 - Start using ESLint for adblockpluschrome (Closed)
Patch Set: Use .includes again Created March 31, 2017, 8:37 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 | « background.js ('k') | chrome/ext/background.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/devtools.js
diff --git a/chrome/devtools.js b/chrome/devtools.js
index e91efc5b917e9b7e0e6042d24ff5c30ccadb5adf..2b8166754494e07d834864bf2b226eb5b4221c6d 100644
--- a/chrome/devtools.js
+++ b/chrome/devtools.js
@@ -47,12 +47,7 @@ chrome.runtime.sendMessage(
panel.onSearch.addListener((eventName, queryString) =>
{
if (panelWindow)
- {
- panelWindow.postMessage({
- type: eventName,
- queryString: queryString
- }, "*");
- }
+ panelWindow.postMessage({type: eventName, queryString}, "*");
});
}
);
« no previous file with comments | « background.js ('k') | chrome/ext/background.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld