summaryrefslogtreecommitdiff
path: root/program/js/app.js
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2008-09-05 10:32:25 +0000
committerthomascube <thomas@roundcube.net>2008-09-05 10:32:25 +0000
commit6e6e89324c231737936acc3a30558df7e9649551 (patch)
tree35baa9cd67edb77cfe9f3d92281265ea9929aa19 /program/js/app.js
parent8beee1b56812aeddfaf4a5d8a43f7e9309b073df (diff)
Capture backspace key in list mode (#1484566)
Diffstat (limited to 'program/js/app.js')
-rw-r--r--program/js/app.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/program/js/app.js b/program/js/app.js
index 9a9865db4..e533e7bde 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -1283,6 +1283,8 @@ function rcube_webmail()
this.command('show');
else if (list.key_pressed == list.DELETE_KEY)
this.command('delete');
+ else if (list.key_pressed == list.BACKSPACE_KEY)
+ this.command('delete');
else
list.shiftkey = false;
};