diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-09-20 12:41:06 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-09-20 12:41:06 +0000 |
| commit | c3db2c46d5d6a5525038376d6e677f73de4e2992 (patch) | |
| tree | 53c2b9b069f9c8c8eec1b448341bc5d22605cde1 /roundcubemail/program/js/app.js | |
| parent | fb70ae41b3f0d06e3a3d9eb7018df17eea379dbe (diff) | |
- Fix so TAB key stops autocompletion and jumps to next field
git-svn-id: https://svn.roundcube.net/trunk@5252 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js/app.js')
| -rw-r--r-- | roundcubemail/program/js/app.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index 769db0790..c1496303c 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/program/js/app.js @@ -3495,10 +3495,6 @@ function rcube_webmail() return rcube_event.cancel(e); - case 9: // tab - if (mod == SHIFT_KEY) - break; - case 13: // enter if (this.ksearch_selected === null || !this.ksearch_value) break; @@ -3509,6 +3505,7 @@ function rcube_webmail() return rcube_event.cancel(e); + case 9: // tab case 27: // escape this.ksearch_hide(); return; |
