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

Side by Side Diff: utils.js

Issue 29371763: Issue 4795 - Use modern JavaScript syntax (Closed)
Patch Set: Define and destructure backgroundPage more consistently, fix minor whitespace errors Created Jan. 18, 2017, 7:34 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
« stats.js ('K') | « 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 var backgroundPage = ext.backgroundPage.getWindow(); 1 "use strict";
2 var require = backgroundPage.require;
3 2
4 var Services = backgroundPage.Services; 3 const backgroundPage = ext.backgroundPage.getWindow();
5 var Synchronizer = require("synchronizer").Synchronizer; 4 const {require, Services} = backgroundPage;
Sebastian Noack 2017/01/18 11:24:30 Note that backgroundPage isn't used anywhere else,
kzar 2017/01/18 11:46:41 Done.
6 var Utils = require("utils").Utils;
7 var Prefs = require("prefs").Prefs;
8 var FilterStorage = require("filterStorage").FilterStorage;
9 var FilterNotifier = require("filterNotifier").FilterNotifier;
10 5
11 var subscriptionClasses = require("subscriptionClasses"); 6 const {Synchronizer} = require("synchronizer");
12 var Subscription = subscriptionClasses.Subscription; 7 const {Utils} = require("utils");
13 var DownloadableSubscription = subscriptionClasses.DownloadableSubscription; 8 const {Prefs} = require("prefs");
14 var filterClasses = require("filterClasses"); 9 const {FilterStorage} = require("filterStorage");
15 var Filter = filterClasses.Filter; 10 const {FilterNotifier} = require("filterNotifier");
16 var BlockingFilter = filterClasses.BlockingFilter; 11
17 var defaultMatcher = require("matcher").defaultMatcher; 12 const {Subscription, DownloadableSubscription} = require("subscriptionClasses");
13 const {Filter, BlockingFilter} = require("filterClasses");
14 const {defaultMatcher} = require("matcher");
18 15
19 /** 16 /**
20 * Shortcut for document.getElementById(id) 17 * Shortcut for document.getElementById(id)
21 */ 18 */
22 function E(id) 19 function E(id)
23 { 20 {
24 return document.getElementById(id); 21 return document.getElementById(id);
25 } 22 }
OLDNEW
« stats.js ('K') | « subscriptionLink.postload.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld