| OLD | NEW |
| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 }; | 85 }; |
| 86 | 86 |
| 87 modules.utils = { | 87 modules.utils = { |
| 88 Utils: { | 88 Utils: { |
| 89 getDocLink(link) | 89 getDocLink(link) |
| 90 { | 90 { |
| 91 return "https://adblockplus.org/redirect?link=" + encodeURIComponent(lin
k); | 91 return "https://adblockplus.org/redirect?link=" + encodeURIComponent(lin
k); |
| 92 }, | 92 }, |
| 93 get appLocale() | 93 get appLocale() |
| 94 { | 94 { |
| 95 return chrome.i18n.getUILanguage(); | 95 return browser.i18n.getUILanguage(); |
| 96 }, | 96 }, |
| 97 get readingDirection() | 97 get readingDirection() |
| 98 { | 98 { |
| 99 return /^(?:ar|fa|he|ug|ur)\b/.test(this.appLocale) ? "rtl" : "ltr"; | 99 return /^(?:ar|fa|he|ug|ur)\b/.test(this.appLocale) ? "rtl" : "ltr"; |
| 100 } | 100 } |
| 101 } | 101 } |
| 102 }; | 102 }; |
| 103 | 103 |
| 104 modules.prefs = {Prefs: new EventEmitter()}; | 104 modules.prefs = {Prefs: new EventEmitter()}; |
| 105 let prefs = { | 105 let prefs = { |
| (...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 611 }, | 611 }, |
| 612 filter: { | 612 filter: { |
| 613 text: "||example.com/some-annoying-popup$popup", | 613 text: "||example.com/some-annoying-popup$popup", |
| 614 whitelisted: false, | 614 whitelisted: false, |
| 615 userDefined: true, | 615 userDefined: true, |
| 616 subscription: null | 616 subscription: null |
| 617 } | 617 } |
| 618 }); | 618 }); |
| 619 }); | 619 }); |
| 620 }()); | 620 }()); |
| OLD | NEW |