Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: html/static/js/ieFirstRun.js

Issue 11364147: Fix for IE6 FRP crash (Closed)
Patch Set: Created Aug. 11, 2013, 6:04 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
Wladimir Palant 2013/08/13 09:52:31 Tabs used instead of spaces for indentation in thi
}
- 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();
+}

Powered by Google App Engine
This is Rietveld