summaryrefslogtreecommitdiff
path: root/roundcubemail/program/js/app.js
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-09-05 10:32:25 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-09-05 10:32:25 +0000
commit41c7c4e16c92c98c8b95796146e229574db4c53c (patch)
tree76d4b64fd103ec39db912d97bc5152aa33c6f299 /roundcubemail/program/js/app.js
parent1794b620702900e70766b9984797797020118223 (diff)
Capture backspace key in list mode (#1484566)
git-svn-id: https://svn.roundcube.net/trunk@1742 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js/app.js')
-rw-r--r--roundcubemail/program/js/app.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index 9a9865db4..e533e7bde 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/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;
};