From cdc534395a1c80526439bfe1029563f57f93fe86 Mon Sep 17 00:00:00 2001 From: alec Date: Wed, 27 Oct 2010 07:48:20 +0000 Subject: - Revert r4135: allow Tab (auto)completion git-svn-id: https://svn.roundcube.net/trunk@4146 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/js/app.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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; -- cgit v1.2.3