| Left: | ||
| Right: | 
| LEFT | RIGHT | 
|---|---|
| 1 /* | 1 /* | 
| 2 * This file is part of Adblock Plus <http://adblockplus.org/>, | 2 * This file is part of Adblock Plus <http://adblockplus.org/>, | 
| 3 * Copyright (C) 2006-2013 Eyeo GmbH | 3 * Copyright (C) 2006-2013 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 15 matching lines...) Expand all Loading... | |
| 26 patternsbackups: 5, | 26 patternsbackups: 5, | 
| 27 patternsbackupinterval: 24, | 27 patternsbackupinterval: 24, | 
| 28 data_directory: "", | 28 data_directory: "", | 
| 29 savestats: false, | 29 savestats: false, | 
| 30 privateBrowsing: false, | 30 privateBrowsing: false, | 
| 31 subscriptions_fallbackerrors: 5, | 31 subscriptions_fallbackerrors: 5, | 
| 32 subscriptions_fallbackurl: "https://adblockplus.org/getSubscription?version=%V ERSION%&url=%SUBSCRIPTION%&downloadURL=%URL%&error=%ERROR%&channelStatus=%CHANNE LSTATUS%&responseStatus=%RESPONSESTATUS%", | 32 subscriptions_fallbackurl: "https://adblockplus.org/getSubscription?version=%V ERSION%&url=%SUBSCRIPTION%&downloadURL=%URL%&error=%ERROR%&channelStatus=%CHANNE LSTATUS%&responseStatus=%RESPONSESTATUS%", | 
| 33 subscriptions_autoupdate: true, | 33 subscriptions_autoupdate: true, | 
| 34 subscriptions_exceptionsurl: "https://easylist-downloads.adblockplus.org/excep tionrules.txt", | 34 subscriptions_exceptionsurl: "https://easylist-downloads.adblockplus.org/excep tionrules.txt", | 
| 35 documentation_link: "https://adblockplus.org/redirect?link=%LINK%&lang=%LANG%" , | 35 documentation_link: "https://adblockplus.org/redirect?link=%LINK%&lang=%LANG%" , | 
| 36 notificationdata: {} | 36 notificationdata: {}, | 
| 
 
Wladimir Palant
2013/07/21 11:15:30
What about notificationurl?
 
Felix Dahlke
2013/07/22 12:30:15
Done.
 
 | |
| 37 notificationurl: "https://notification.adblockplus.org/notification.json" | |
| 37 }; | 38 }; | 
| 38 | 39 | 
| 39 let listeners = []; | 40 let listeners = []; | 
| 40 | 41 | 
| 41 function defineProperty(key) | 42 function defineProperty(key) | 
| 42 { | 43 { | 
| 43 Prefs.__defineGetter__(key, function() | 44 Prefs.__defineGetter__(key, function() | 
| 44 { | 45 { | 
| 45 if (key in localStorage) | 46 if (key in localStorage) | 
| 46 { | 47 { | 
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 81 removeListener: function(listener) | 82 removeListener: function(listener) | 
| 82 { | 83 { | 
| 83 let index = listeners.indexOf(listener); | 84 let index = listeners.indexOf(listener); | 
| 84 if (index >= 0) | 85 if (index >= 0) | 
| 85 listeners.splice(index, 1); | 86 listeners.splice(index, 1); | 
| 86 }, | 87 }, | 
| 87 }; | 88 }; | 
| 88 | 89 | 
| 89 for (let key in defaults) | 90 for (let key in defaults) | 
| 90 defineProperty(key); | 91 defineProperty(key); | 
| LEFT | RIGHT |