diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-04-27 11:13:16 +0200 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-04-27 11:13:16 +0200 |
commit | e66060388f0f8402bed402cb28edbe43fcc31ad5 (patch) | |
tree | a6b92a1da483b654e3ac498fe1197dcad9c65866 | |
parent | 57bc4374148efa1ce0e5f70e1bdfb9f763b9d9ee (diff) | |
download | UXP-e66060388f0f8402bed402cb28edbe43fcc31ad5.tar UXP-e66060388f0f8402bed402cb28edbe43fcc31ad5.tar.gz UXP-e66060388f0f8402bed402cb28edbe43fcc31ad5.tar.lz UXP-e66060388f0f8402bed402cb28edbe43fcc31ad5.tar.xz UXP-e66060388f0f8402bed402cb28edbe43fcc31ad5.zip |
[PALEMOON] Remove "dom.push.enabled" from aboutPermissions.js (consolidated to "dom.webnotifications.enabled")
-rw-r--r-- | application/palemoon/components/preferences/aboutPermissions.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/application/palemoon/components/preferences/aboutPermissions.js b/application/palemoon/components/preferences/aboutPermissions.js index 9723496bc..531bb061f 100644 --- a/application/palemoon/components/preferences/aboutPermissions.js +++ b/application/palemoon/components/preferences/aboutPermissions.js @@ -541,7 +541,6 @@ var AboutPermissions = { Services.prefs.addObserver("dom.webnotifications.enabled", this, false); Services.prefs.addObserver("xpinstall.whitelist.required", this, false); Services.prefs.addObserver("geo.enabled", this, false); - Services.prefs.addObserver("dom.push.enabled", this, false); Services.prefs.addObserver("dom.indexedDB.enabled", this, false); Services.prefs.addObserver("plugins.click_to_play", this, false); Services.prefs.addObserver("full-screen-api.enabled", this, false); @@ -694,7 +693,6 @@ var AboutPermissions = { Services.prefs.removeObserver("dom.webnotifications.enabled", this, false); Services.prefs.removeObserver("xpinstall.whitelist.required", this, false); Services.prefs.removeObserver("geo.enabled", this, false); - Services.prefs.removeObserver("dom.push.enabled", this, false); Services.prefs.removeObserver("dom.indexedDB.enabled", this, false); Services.prefs.removeObserver("plugins.click_to_play", this, false); Services.prefs.removeObserver("full-screen-api.enabled", this, false); |