summaryrefslogtreecommitdiff
path: root/roundcubemail/program/js
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-10-27 07:48:20 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-10-27 07:48:20 +0000
commitcdc534395a1c80526439bfe1029563f57f93fe86 (patch)
treebe7bf2b473f4e5c0434a88a5ab6637d5a566f7c1 /roundcubemail/program/js
parent068277d4f0c6b5601089a7999e9a9114fa51db46 (diff)
- Revert r4135: allow Tab (auto)completion
git-svn-id: https://svn.roundcube.net/trunk@4146 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js')
-rw-r--r--roundcubemail/program/js/app.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index fe40a8b89..6b4be6c76 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/program/js/app.js
@@ -3368,7 +3368,11 @@ function rcube_webmail()
return rcube_event.cancel(e);
- case 13: // enter
+ case 9: // tab
+ if (mod == SHIFT_KEY)
+ break;
+
+ case 13: // enter
if (this.ksearch_selected===null || !this.ksearch_input || !this.ksearch_value)
break;