| LEFT | RIGHT |
| 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 Loading... |
| 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 |
| 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 Loading... |
| 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(); |
| LEFT | RIGHT |