summaryrefslogtreecommitdiff
path: root/program/js
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2009-05-27 15:46:39 +0000
committerthomascube <thomas@roundcube.net>2009-05-27 15:46:39 +0000
commit3d3d1010cc9d03a73471cd095b623c09ed1fad49 (patch)
tree757c2110dd6d76a88c295f18c019c72de1b7e154 /program/js
parentbb5dd5916bdb4e789300799f9e6a2be831e6bf14 (diff)
Fix keyboard control of the autocomplete list
Diffstat (limited to 'program/js')
-rw-r--r--program/js/app.js2
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');
};