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

Unified Diff: lib/appSupport.js

Issue 6286955629248512: disable acceptable ads from first run page (Closed)
Patch Set: Fixes after Wladimir comments Created May 2, 2014, 1:58 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/appSupport.js
===================================================================
--- a/lib/appSupport.js
+++ b/lib/appSupport.js
@@ -916,6 +916,26 @@
if (Utils.confirm(window, dialogMessage, dialogTitle))
this.setSubscription(url, title);
};
+
+ UI.openFiltersDialog = function()
+ {
+ let window = UI.currentWindow;
+ if (!window)
+ return
+
+ let browser = exports.addTab(window, "about:addons").browser;
+ browser.addEventListener("load", function openAddonPrefs(event)
+ {
+ browser.removeEventListener("load", openAddonPrefs, true);
+ Utils.runAsync(function(state)
+ {
+ let event = new Event("Event");
+ event.initEvent("popstate", true, false);
+ event.state = state;
+ browser._contentWindow.dispatchEvent(event);
+ }, this, {id: require("info").addonID});
Wladimir Palant 2014/05/02 16:36:47 Passing in this and the state parameter is unneces
saroyanm 2014/05/03 08:02:06 My bad that I didn't left comment on this. When I
Wladimir Palant 2014/05/03 17:54:18 That's indeed an issue. The list of add-ons is bei
saroyanm 2014/05/04 14:05:08 Thanks for descriptive answer Wladimir, I also ha
+ }, true);
+ };
break;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld