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: Comment addressed Created Aug. 11, 2013, 4:21 p.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
« no previous file with comments | « html/static/js/firstRun.js ('k') | src/plugin/PluginClass.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
+}
« no previous file with comments | « html/static/js/firstRun.js ('k') | src/plugin/PluginClass.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld