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

Unified Diff: chrome/ext/popup.js

Issue 29374674: Issue 4864 - Start using ESLint for adblockpluschrome (Closed)
Patch Set: Remove the arrow-parens rule Created March 9, 2017, 10:15 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 | « chrome/ext/common.js ('k') | composer.js » ('j') | notification.js » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/ext/popup.js
diff --git a/chrome/ext/popup.js b/chrome/ext/popup.js
index f5132aa457a4366129078917064aefc9092ebc42..7eb1ca45497aeb37cbb9a5a96400a6c791e47ae5 100644
--- a/chrome/ext/popup.js
+++ b/chrome/ext/popup.js
@@ -1,8 +1,10 @@
"use strict";
+let ext;
+
{
const backgroundPage = chrome.extension.getBackgroundPage();
- var ext = Object.create(backgroundPage.ext);
+ ext = Object.create(backgroundPage.ext);
ext.closePopup = () =>
{
« no previous file with comments | « chrome/ext/common.js ('k') | composer.js » ('j') | notification.js » ('J')

Powered by Google App Engine
This is Rietveld