diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-07-25 15:29:37 +0200 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-07-25 15:29:37 +0200 |
commit | 2f8302dd63b5111bb5747975283a64d1b66042d5 (patch) | |
tree | 65ba2180728842e4dafdb5dc33953be32f689202 /application/palemoon/components/preferences/applications.js | |
parent | 58d5c1cca4ae42690a7ddb4e3025d794958b2e37 (diff) | |
download | UXP-2f8302dd63b5111bb5747975283a64d1b66042d5.tar UXP-2f8302dd63b5111bb5747975283a64d1b66042d5.tar.gz UXP-2f8302dd63b5111bb5747975283a64d1b66042d5.tar.lz UXP-2f8302dd63b5111bb5747975283a64d1b66042d5.tar.xz UXP-2f8302dd63b5111bb5747975283a64d1b66042d5.zip |
[PALEMOON] Bug 1034043 - Fix remaining use of "awlaysAsk" attribute in applications pref pane
Diffstat (limited to 'application/palemoon/components/preferences/applications.js')
-rw-r--r-- | application/palemoon/components/preferences/applications.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/palemoon/components/preferences/applications.js b/application/palemoon/components/preferences/applications.js index 1ff63ada9..1936f5ee8 100644 --- a/application/palemoon/components/preferences/applications.js +++ b/application/palemoon/components/preferences/applications.js @@ -1378,7 +1378,7 @@ var gApplicationsPane = { { var askMenuItem = document.createElement("menuitem"); - askMenuItem.setAttribute("alwaysAsk", "true"); + askMenuItem.setAttribute("action", Ci.nsIHandlerInfo.alwaysAsk); let label; if (isFeedType(handlerInfo.type)) label = this._prefsBundle.getFormattedString("previewInApp", |