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-2017 eyeo GmbH | 3 * Copyright (C) 2006-2017 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 19 matching lines...) Expand all Loading... |
30 // Make sure to not run asynchronous actions before all | 30 // Make sure to not run asynchronous actions before all |
31 // scripts loaded. This caused issues on Opera in the past. | 31 // scripts loaded. This caused issues on Opera in the past. |
32 let onDOMContentLoaded = () => | 32 let onDOMContentLoaded = () => |
33 { | 33 { |
34 document.removeEventListener("DOMContentLoaded", onDOMContentLoaded); | 34 document.removeEventListener("DOMContentLoaded", onDOMContentLoaded); |
35 callback(); | 35 callback(); |
36 }; | 36 }; |
37 document.addEventListener("DOMContentLoaded", onDOMContentLoaded); | 37 document.addEventListener("DOMContentLoaded", onDOMContentLoaded); |
38 } | 38 } |
39 else | 39 else |
| 40 { |
40 setTimeout(callback, 0); | 41 setTimeout(callback, 0); |
| 42 } |
41 }, | 43 }, |
42 get appLocale() | 44 get appLocale() |
43 { | 45 { |
44 let locale = ext.i18n.getMessage("@@ui_locale").replace(/_/g, "-"); | 46 let locale = ext.i18n.getMessage("@@ui_locale").replace(/_/g, "-"); |
45 Object.defineProperty(this, "appLocale", {value: locale, enumerable: true}); | 47 Object.defineProperty(this, "appLocale", {value: locale, enumerable: true}); |
46 return this.appLocale; | 48 return this.appLocale; |
47 }, | 49 }, |
48 generateChecksum(lines) | 50 generateChecksum(lines) |
49 { | 51 { |
50 // We cannot calculate MD5 checksums yet :-( | 52 // We cannot calculate MD5 checksums yet :-( |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 { | 110 { |
109 let docLink = require("prefs").Prefs.documentation_link; | 111 let docLink = require("prefs").Prefs.documentation_link; |
110 return docLink.replace(/%LINK%/g, linkID) | 112 return docLink.replace(/%LINK%/g, linkID) |
111 .replace(/%LANG%/g, Utils.appLocale); | 113 .replace(/%LANG%/g, Utils.appLocale); |
112 }, | 114 }, |
113 | 115 |
114 yield() | 116 yield() |
115 { | 117 { |
116 } | 118 } |
117 }; | 119 }; |
LEFT | RIGHT |