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

Delta Between Two Patch Sets: desktop-options.js

Issue 29573905: Issue 4580 - Replace ext.devtools with devtools Base URL: https://hg.adblockplus.org/adblockplusui/
Left Patch Set: Created Oct. 11, 2017, 10:38 p.m.
Right Patch Set: Rebase Created Oct. 18, 2017, 1:37 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « background.js ('k') | devtools-panel.html » ('j') | polyfill.js » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 /* 1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>, 2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-present eyeo GmbH 3 * Copyright (C) 2006-present eyeo GmbH
4 * 4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify 5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as 6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
8 * 8 *
9 * Adblock Plus is distributed in the hope that it will be useful, 9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 1195 matching lines...) Expand 10 before | Expand all | Expand 10 after
1206 updateSubscription(subscription); 1206 updateSubscription(subscription);
1207 break; 1207 break;
1208 case "downloading": 1208 case "downloading":
1209 case "downloadStatus": 1209 case "downloadStatus":
1210 case "homepage": 1210 case "homepage":
1211 case "lastDownload": 1211 case "lastDownload":
1212 case "title": 1212 case "title":
1213 updateSubscription(subscription); 1213 updateSubscription(subscription);
1214 break; 1214 break;
1215 case "added": 1215 case "added":
1216 let {url, recommended} = subscription; 1216 let {url} = subscription;
1217 // Handle custom subscription 1217 // Handle custom subscription
1218 if (/^~user/.test(url)) 1218 if (/^~user/.test(url))
1219 { 1219 {
1220 loadCustomFilters(subscription.filters); 1220 loadCustomFilters(subscription.filters);
1221 return; 1221 return;
1222 } 1222 }
1223 else if (url in subscriptionsMap) 1223 else if (url in subscriptionsMap)
1224 updateSubscription(subscription); 1224 updateSubscription(subscription);
1225 else 1225 else
1226 addSubscription(subscription); 1226 addSubscription(subscription);
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
1380 }); 1380 });
1381 browser.runtime.sendMessage({ 1381 browser.runtime.sendMessage({
1382 type: "subscriptions.listen", 1382 type: "subscriptions.listen",
1383 filter: ["added", "disabled", "homepage", "lastDownload", "removed", 1383 filter: ["added", "disabled", "homepage", "lastDownload", "removed",
1384 "title", "downloadStatus", "downloading"] 1384 "title", "downloadStatus", "downloading"]
1385 }); 1385 });
1386 1386
1387 window.addEventListener("DOMContentLoaded", onDOMLoaded, false); 1387 window.addEventListener("DOMContentLoaded", onDOMLoaded, false);
1388 window.addEventListener("hashchange", onHashChange, false); 1388 window.addEventListener("hashchange", onHashChange, false);
1389 } 1389 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld