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

Unified Diff: chrome/content/ui/typoSettings.js

Issue 10585038: First-run page (revisited) (Closed)
Patch Set: Implemented behavior of remaining buttons on Chrome; Added changelog and data corruption warning Created May 24, 2013, 10:09 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: chrome/content/ui/typoSettings.js
===================================================================
--- a/chrome/content/ui/typoSettings.js
+++ b/chrome/content/ui/typoSettings.js
@@ -108,7 +108,9 @@
}
};
+// only interact with UI if loaded in the context of filter settings dialog
Thomas Greiner 2013/05/24 10:19:12 tried to put the whole block under the if but resu
Wladimir Palant 2013/05/27 11:02:00 Please revert these changes, this script should on
Thomas Greiner 2013/05/27 13:03:16 Done.
window.addEventListener("load", function()
{
- TypoActions.init();
+ if (document.documentElement.id == "abpFiltersWindow")
+ TypoActions.init();
}, false);

Powered by Google App Engine
This is Rietveld