| Index: html/static/js/ieFirstRun.js |
| =================================================================== |
| --- a/html/static/js/ieFirstRun.js |
| +++ b/html/static/js/ieFirstRun.js |
| @@ -43,10 +43,8 @@ |
| { |
| AdblockPlus.getMessage = function(section, param) |
| { |
| - return Settings.GetMessage(section, param); |
| + return window.Settings.GetMessage(section, param); |
| } |
| - Prefs.documentation_link = Settings.GetDocumentationLink(); |
| - Utils.appLocale = Settings.GetAppLocale(); |
| -} |
| - |
| -window.addEventListener("load", initWrappers, false); |
| + Prefs.documentation_link = window.Settings.GetDocumentationLink(); |
| + Utils.appLocale = window.Settings.GetAppLocale(); |
| +} |