From 3d3d1010cc9d03a73471cd095b623c09ed1fad49 Mon Sep 17 00:00:00 2001 From: thomascube Date: Wed, 27 May 2009 15:46:39 +0000 Subject: Fix keyboard control of the autocomplete list --- program/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'program/js/app.js') 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'); }; -- cgit v1.2.3