diff options
author | alecpl <alec@alec.pl> | 2011-09-20 12:41:06 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-09-20 12:41:06 +0000 |
commit | 7bf3ce72e56aff9b9b05d450a58eef79d66fb238 (patch) | |
tree | 5f281ee684fb5248b11a5ea177d96c33eb043519 /program/js/app.js | |
parent | 37d511ff380e34a015dcc09b79704b33e3cf06b3 (diff) |
- Fix so TAB key stops autocompletion and jumps to next field
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/program/js/app.js b/program/js/app.js index 769db0790..c1496303c 100644 --- a/program/js/app.js +++ b/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; |