diff options
author | thomascube <thomas@roundcube.net> | 2009-05-27 15:46:39 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2009-05-27 15:46:39 +0000 |
commit | 3d3d1010cc9d03a73471cd095b623c09ed1fad49 (patch) | |
tree | 757c2110dd6d76a88c295f18c019c72de1b7e154 /program/js | |
parent | bb5dd5916bdb4e789300799f9e6a2be831e6bf14 (diff) |
Fix keyboard control of the autocomplete list
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 b9fce8b11..4a90bf200 100644 --- a/program/js/app.js +++ b/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'); }; |