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

Unified Diff: qunit/common.js

Issue 5251132066627584: Issue 1488 - Add pre-configurable preference to suppress first run page (Closed)
Patch Set: Created March 19, 2015, 2:24 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
« lib/prefs.js ('K') | « metadata.chrome ('k') | safari/ext/background.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: qunit/common.js
===================================================================
--- a/qunit/common.js
+++ b/qunit/common.js
@@ -45,8 +45,9 @@
this._pbackup = Object.create(null);
for (var pref in Prefs)
{
- if (typeof Prefs[pref] != "function")
- this._pbackup[pref] = Prefs[pref];
+ var value = Prefs[pref];
+ if (!(value instanceof ext._EventTarget))
+ this._pbackup[pref] = value;
}
Prefs.enabled = true;
}
« lib/prefs.js ('K') | « metadata.chrome ('k') | safari/ext/background.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld