diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-07-25 15:29:37 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-08-04 08:06:49 +0200 |
commit | 0f387725735fedc7e1b8d9bcfcb47f4c4a9880c7 (patch) | |
tree | 75543d9712046e39a4aff8f0d125725be5f239db | |
parent | ef812779250565d4ad751220e74d975fc7898cc1 (diff) | |
download | uxp-0f387725735fedc7e1b8d9bcfcb47f4c4a9880c7.tar.gz |
[PALEMOON] Bug 1034043 - Fix remaining use of "awlaysAsk" attribute in applications pref pane
-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 1ff63ada99..1936f5ee85 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", |