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

Side by Side Diff: utils.js

Issue 29374674: Issue 4864 - Start using ESLint for adblockpluschrome (Closed)
Patch Set: Rebased. Created March 7, 2017, 10:44 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « subscriptionLink.postload.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 "use strict"; 1 "use strict";
2 2
3 const {require, Services} = ext.backgroundPage.getWindow(); 3 const {require, Services} = ext.backgroundPage.getWindow();
4 4
5 const {Synchronizer} = require("synchronizer"); 5 const {Synchronizer} = require("synchronizer");
6 const {Utils} = require("utils"); 6 const {Utils} = require("utils");
7 const {Prefs} = require("prefs"); 7 const {Prefs} = require("prefs");
8 const {FilterStorage} = require("filterStorage"); 8 const {FilterStorage} = require("filterStorage");
9 const {FilterNotifier} = require("filterNotifier"); 9 const {FilterNotifier} = require("filterNotifier");
10 10
11 const {Subscription, DownloadableSubscription} = require("subscriptionClasses"); 11 const {Subscription, DownloadableSubscription} = require("subscriptionClasses");
12 const {Filter, BlockingFilter} = require("filterClasses"); 12 const {Filter, BlockingFilter} = require("filterClasses");
13 const {defaultMatcher} = require("matcher"); 13 const {defaultMatcher} = require("matcher");
14 14
15 /** 15 // Shortcut for document.getElementById(id)
16 * Shortcut for document.getElementById(id)
17 */
18 function E(id) 16 function E(id)
19 { 17 {
20 return document.getElementById(id); 18 return document.getElementById(id);
21 } 19 }
OLDNEW
« no previous file with comments | « subscriptionLink.postload.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld