diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-11-22 15:46:37 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-11-22 15:46:37 +0100 |
commit | 184a11b4fb35dae46366adba580e7d99ac457781 (patch) | |
tree | d96d529f6beb13ef50b57f744151b30182adc8dd /program/js | |
parent | 9e36fba547f96c1ed87dca58418188715c0caa9e (diff) |
Fix keyboard navigation in autocompletion list on Opera browser
(use keydown event on all browsers)
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js index 28ee96b9f..c9d0ab955 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -3202,7 +3202,7 @@ function rcube_webmail() { this.env.recipients_delimiter = this.env.recipients_separator + ' '; - obj[bw.ie || bw.safari || bw.chrome ? 'keydown' : 'keypress'](function(e) { return ref.ksearch_keydown(e, this, props); }) + obj.keydown(function(e) { return ref.ksearch_keydown(e, this, props); }) .attr('autocomplete', 'off'); }; |