diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-05-27 15:46:39 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-05-27 15:46:39 +0000 |
| commit | 9c1db28412620ccb70a57b0bf3aef335f385b9fd (patch) | |
| tree | 749de0157380044e8921c32927e1da828d7f554c /roundcubemail/program/js | |
| parent | 450152c9f1daaf907ff917da37094321bb533a34 (diff) | |
Fix keyboard control of the autocomplete list
git-svn-id: https://svn.roundcube.net/trunk@2550 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js')
| -rw-r--r-- | roundcubemail/program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index b9fce8b11..4a90bf200 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/program/js/app.js @@ -486,7 +486,7 @@ function rcube_webmail() this.init_address_input_events = function(obj) { var handler = function(e){ return ref.ksearch_keypress(e,this); }; - obj.bind((bw.safari ? 'keydown' : 'keypress'), handler); + obj.bind((bw.safari || bw.ie ? 'keydown' : 'keypress'), handler); obj.attr('autocomplete', 'off'); }; |
