summaryrefslogtreecommitdiffstats
path: root/application/palemoon/components/preferences/cookies.js
diff options
context:
space:
mode:
authorjanekptacijarabaci <janekptacijarabaci@seznam.cz>2018-04-26 06:35:21 +0200
committerjanekptacijarabaci <janekptacijarabaci@seznam.cz>2018-04-26 06:35:21 +0200
commit522095380fc6cf3b214746802012fccb8f1071bd (patch)
tree599baf7c39e78fe1a9ca3edc073cb3dfb171a54d /application/palemoon/components/preferences/cookies.js
parent90e7b450997fcf0e48034dbec4402f9f68027b0b (diff)
downloadUXP-522095380fc6cf3b214746802012fccb8f1071bd.tar
UXP-522095380fc6cf3b214746802012fccb8f1071bd.tar.gz
UXP-522095380fc6cf3b214746802012fccb8f1071bd.tar.lz
UXP-522095380fc6cf3b214746802012fccb8f1071bd.tar.xz
UXP-522095380fc6cf3b214746802012fccb8f1071bd.zip
Bug 431901 - Update preference dialogs to treat backspace and delete equivalently on Mac OS X
Diffstat (limited to 'application/palemoon/components/preferences/cookies.js')
-rw-r--r--application/palemoon/components/preferences/cookies.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/application/palemoon/components/preferences/cookies.js b/application/palemoon/components/preferences/cookies.js
index ea7e7d4e2..d493a0056 100644
--- a/application/palemoon/components/preferences/cookies.js
+++ b/application/palemoon/components/preferences/cookies.js
@@ -725,8 +725,13 @@ var gCookiesWindow = {
},
onCookieKeyPress: function (aEvent) {
- if (aEvent.keyCode == 46)
+ if (aEvent.keyCode == KeyEvent.DOM_VK_DELETE
+#ifdef XP_MACOSX
+ || aEvent.keyCode == KeyEvent.DOM_VK_BACK_SPACE
+#endif
+ ) {
this.deleteCookie();
+ }
},
_lastSortProperty : "",