From 7bf3ce72e56aff9b9b05d450a58eef79d66fb238 Mon Sep 17 00:00:00 2001 From: alecpl Date: Tue, 20 Sep 2011 12:41:06 +0000 Subject: - Fix so TAB key stops autocompletion and jumps to next field --- program/js/app.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'program/js') 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; -- cgit v1.2.3