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

Delta Between Two Patch Sets: lib/notification.js

Issue 29397663: Noissue - Fix a break when loading adblockpluscore into Chrome extension (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore/
Left Patch Set: Created March 29, 2017, 9:10 p.m.
Right Patch Set: Added eslint hints Created March 29, 2017, 9:34 p.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
« lib/filterListener.js ('K') | « lib/filterStorage.js ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 /* global Services */
1 /* 2 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>, 3 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-2016 Eyeo GmbH 4 * Copyright (C) 2006-2017 eyeo GmbH
4 * 5 *
5 * Adblock Plus is free software: you can redistribute it and/or modify 6 * 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 7 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation. 8 * published by the Free Software Foundation.
8 * 9 *
9 * Adblock Plus is distributed in the hope that it will be useful, 10 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details. 13 * GNU General Public License for more details.
13 * 14 *
(...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 else if (index != -1 && forceValue !== true) 467 else if (index != -1 && forceValue !== true)
467 categories.splice(index, 1); 468 categories.splice(index, 1);
468 469
469 // HACK: JSON values aren't saved unless they are assigned a 470 // HACK: JSON values aren't saved unless they are assigned a
470 // different object. 471 // different object.
471 Prefs.notifications_ignoredcategories = 472 Prefs.notifications_ignoredcategories =
472 JSON.parse(JSON.stringify(categories)); 473 JSON.parse(JSON.stringify(categories));
473 } 474 }
474 }; 475 };
475 Notification.init(); 476 Notification.init();
LEFTRIGHT

Powered by Google App Engine
This is Rietveld