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

Delta Between Two Patch Sets: chrome/ext/popup.js

Issue 29374674: Issue 4864 - Start using ESLint for adblockpluschrome (Closed)
Left Patch Set: Use var for ext declarations again Created Feb. 8, 2017, 9:02 a.m.
Right Patch Set: Use .includes again Created March 31, 2017, 8:37 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « chrome/ext/devtools.js ('k') | composer.js » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 "use strict"; 1 "use strict";
2 2
3 (function()
3 { 4 {
4 const backgroundPage = chrome.extension.getBackgroundPage(); 5 const backgroundPage = chrome.extension.getBackgroundPage();
6 window.ext = Object.create(backgroundPage.ext);
5 7
6 /* eslint-disable no-var */ 8 window.ext.closePopup = () =>
7 var ext = Object.create(backgroundPage.ext);
Sebastian Noack 2017/02/09 01:04:49 The popup code (also) broke because you used Objec
kzar 2017/02/20 10:27:30 Ah well spotted, Done.
8 /* eslint-enable no-var */
9
10 ext.closePopup = () =>
11 { 9 {
12 window.close(); 10 window.close();
13 }; 11 };
14 12
15 // We have to override ext.backgroundPage, because in order 13 // We have to override ext.backgroundPage, because in order
16 // to send messages the local "chrome" namespace must be used. 14 // to send messages the local "chrome" namespace must be used.
17 ext.backgroundPage = { 15 window.ext.backgroundPage = {
18 sendMessage: chrome.runtime.sendMessage, 16 sendMessage: chrome.runtime.sendMessage,
19 17
20 getWindow() 18 getWindow()
21 { 19 {
22 return backgroundPage; 20 return backgroundPage;
23 } 21 }
24 }; 22 };
25 } 23 }());
LEFTRIGHT

Powered by Google App Engine
This is Rietveld