diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-10-27 07:48:20 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-10-27 07:48:20 +0000 |
| commit | cdc534395a1c80526439bfe1029563f57f93fe86 (patch) | |
| tree | be7bf2b473f4e5c0434a88a5ab6637d5a566f7c1 | |
| parent | 068277d4f0c6b5601089a7999e9a9114fa51db46 (diff) | |
- Revert r4135: allow Tab (auto)completion
git-svn-id: https://svn.roundcube.net/trunk@4146 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/js/app.js | 6 |
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; |
