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

Side by Side Diff: html/static/js/ieFirstRun.js

Issue 6196733759455232: Issue 1181 - Change polyfill for IE8 (fix settings page) (Closed)
Patch Set: Reuse code for addEventListener/removeEventListener Created Aug. 8, 2014, 2:18 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
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 24 matching lines...) Expand all
35 result.getMessage = function(section, param) 35 result.getMessage = function(section, param)
36 { 36 {
37 return Settings.GetMessage(section, param); 37 return Settings.GetMessage(section, param);
38 } 38 }
39 result.isUpdate = function() 39 result.isUpdate = function()
40 { 40 {
41 return Settings.IsUpdate(); 41 return Settings.IsUpdate();
42 } 42 }
43 scopes.prefs.Prefs.documentation_link = Settings.GetDocumentationLink(); 43 scopes.prefs.Prefs.documentation_link = Settings.GetDocumentationLink();
44 scopes.utils.Utils.appLocale = Settings.GetAppLocale(); 44 scopes.utils.Utils.appLocale = Settings.GetAppLocale();
45
46 init();
45 }, false); 47 }, false);
46 48
47 return result; 49 return result;
48 })(); 50 })();
OLDNEW
« html/static/js/ieEventListenerPolyfill.js ('K') | « html/static/js/ieEventListenerPolyfill.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld