Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 var AdblockPlus = (function() | 1 var AdblockPlus = (function() |
2 { | 2 { |
3 var scopes = | 3 var scopes = |
4 { | 4 { |
5 prefs: | 5 prefs: |
6 { | 6 { |
7 Prefs: {documentation_link: ""} | 7 Prefs: {documentation_link: ""} |
8 }, | 8 }, |
9 utils: | 9 utils: |
10 { | 10 { |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
45 return Settings.GetConversion(); | 45 return Settings.GetConversion(); |
46 } | 46 } |
47 scopes.prefs.Prefs.documentation_link = Settings.GetDocumentationLink(); | 47 scopes.prefs.Prefs.documentation_link = Settings.GetDocumentationLink(); |
48 scopes.utils.Utils.appLocale = Settings.GetAppLocale(); | 48 scopes.utils.Utils.appLocale = Settings.GetAppLocale(); |
49 | 49 |
50 init(); | 50 init(); |
51 }, false); | 51 }, false); |
52 | 52 |
53 return result; | 53 return result; |
54 })(); | 54 })(); |
LEFT | RIGHT |