From 6e6e89324c231737936acc3a30558df7e9649551 Mon Sep 17 00:00:00 2001 From: thomascube Date: Fri, 5 Sep 2008 10:32:25 +0000 Subject: Capture backspace key in list mode (#1484566) --- program/js/app.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'program/js/app.js') 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; }; -- cgit v1.2.3