alecpl
2011-09-20 7bf3ce72e56aff9b9b05d450a58eef79d66fb238
- Fix so TAB key stops autocompletion and jumps to next field


1 files modified
5 ■■■■ changed files
program/js/app.js 5 ●●●● patch | view | raw | blame | history
program/js/app.js
@@ -3495,10 +3495,6 @@
        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 @@
        return rcube_event.cancel(e);
      case 9:   // tab
      case 27:  // escape
        this.ksearch_hide();
        return;