diff options
author | JustOff <Off.Just.Off@gmail.com> | 2018-10-20 21:41:07 +0300 |
---|---|---|
committer | JustOff <Off.Just.Off@gmail.com> | 2018-10-20 21:41:07 +0300 |
commit | 4c488cb7f10ad18c0759903c7bef67ad432f96bc (patch) | |
tree | 7f9e849534cc16542ab0823cdc9696d275b9f0c7 /application | |
parent | 0d7afa78f0125aa606d5f47cd9518514770dd474 (diff) | |
download | UXP-4c488cb7f10ad18c0759903c7bef67ad432f96bc.tar UXP-4c488cb7f10ad18c0759903c7bef67ad432f96bc.tar.gz UXP-4c488cb7f10ad18c0759903c7bef67ad432f96bc.tar.lz UXP-4c488cb7f10ad18c0759903c7bef67ad432f96bc.tar.xz UXP-4c488cb7f10ad18c0759903c7bef67ad432f96bc.zip |
[PALEMOON] Open about:permissions when notification settings are requested
Diffstat (limited to 'application')
-rw-r--r-- | application/palemoon/components/nsBrowserGlue.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/application/palemoon/components/nsBrowserGlue.js b/application/palemoon/components/nsBrowserGlue.js index 720d1165c..f0a7aa22a 100644 --- a/application/palemoon/components/nsBrowserGlue.js +++ b/application/palemoon/components/nsBrowserGlue.js @@ -152,6 +152,9 @@ BrowserGlue.prototype = { // nsIObserver implementation observe: function BG_observe(subject, topic, data) { switch (topic) { + case "notifications-open-settings": + this._openPermissions(subject); + break; case "prefservice:after-app-defaults": this._onAppDefaults(); break; @@ -322,6 +325,7 @@ BrowserGlue.prototype = { // initialization (called on application startup) _init: function BG__init() { let os = Services.obs; + os.addObserver(this, "notifications-open-settings", false); os.addObserver(this, "prefservice:after-app-defaults", false); os.addObserver(this, "final-ui-startup", false); os.addObserver(this, "browser-delayed-startup-finished", false); @@ -354,6 +358,7 @@ BrowserGlue.prototype = { // cleanup (called on application shutdown) _dispose: function BG__dispose() { let os = Services.obs; + os.removeObserver(this, "notifications-open-settings"); os.removeObserver(this, "prefservice:after-app-defaults"); os.removeObserver(this, "final-ui-startup"); os.removeObserver(this, "sessionstore-windows-restored"); @@ -1484,6 +1489,16 @@ BrowserGlue.prototype = { } }, + _openPermissions: function(aPrincipal) { + var win = this.getMostRecentBrowserWindow(); + var url = "about:permissions"; + try { + url = url + "?filter=" + aPrincipal.URI.host; + } + catch (e) {} + win.openUILinkIn(url, "tab"); + }, + _hasSystemAlertsService: function() { try { return !!Cc["@mozilla.org/system-alerts-service;1"].getService( |