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

Delta Between Two Patch Sets: lib/prefs.js

Issue 6648246944399360: Noissue - Document the prefs module (Closed)
Left Patch Set: Fixed typo, misspelling "initialization" Created April 16, 2015, 1:49 p.m.
Right Patch Set: Added link to devbuild announcement explaining the suppress_first_run_page preference Created April 18, 2015, 2:35 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
« no previous file with change/comment | « no previous file | 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 /* 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-2015 Eyeo GmbH 3 * Copyright (C) 2006-2015 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 /** 131 /**
132 * Whether to collapse placeholders for blocked elements. 132 * Whether to collapse placeholders for blocked elements.
133 * 133 *
134 * @type {boolean} 134 * @type {boolean}
135 */ 135 */
136 defaults.hidePlaceholders = true; 136 defaults.hidePlaceholders = true;
137 /** 137 /**
138 * Whether to suppress the first run page. This preference isn't 138 * Whether to suppress the first run page. This preference isn't
139 * set by the extension but can be pre-configured externally. 139 * set by the extension but can be pre-configured externally.
140 * 140 *
141 * @see https://adblockplus.org/development-builds/suppressing-the-first-run-pag e-on-chrome
Sebastian Noack 2015/04/18 14:36:27 Note that this page isn't up yet, but will be at t
141 * @type {boolean} 142 * @type {boolean}
142 */ 143 */
143 defaults.suppress_first_run_page = false; 144 defaults.suppress_first_run_page = false;
144 145
145 /** 146 /**
146 * @namespace 147 * @namespace
147 * @static 148 * @static
148 */ 149 */
149 let Prefs = exports.Prefs = { 150 let Prefs = exports.Prefs = {
150 /** 151 /**
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 }); 291 });
291 } 292 }
292 else 293 else
293 { 294 {
294 managedLoaded = true; 295 managedLoaded = true;
295 checkLoaded(); 296 checkLoaded();
296 } 297 }
297 } 298 }
298 299
299 init(); 300 init();
LEFTRIGHT
« no previous file | no next file » | Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Toggle Comments ('s')

Powered by Google App Engine
This is Rietveld