- Fix IE problem with mouse click autocomplete (#1485739)

release-0.6
alecpl 16 years ago
parent 0ff63513c2
commit 7b0eac9b17

@ -1,6 +1,10 @@
CHANGELOG RoundCube Webmail CHANGELOG RoundCube Webmail
--------------------------- ---------------------------
2009/02/24 (alec)
----------
- Fix IE problem with mouse click autocomplete (#1485739)
2009/02/18 (alec) 2009/02/18 (alec)
---------- ----------
- Fix html body washing on reply/forward + fix attachments handling (#1485676) - Fix html body washing on reply/forward + fix attachments handling (#1485676)

@ -2591,11 +2591,11 @@ function rcube_webmail()
this.ksearch_click = function(node) this.ksearch_click = function(node)
{ {
if (this.ksearch_input)
this.ksearch_input.focus();
this.insert_recipient(node._rcm_id); this.insert_recipient(node._rcm_id);
this.ksearch_hide(); this.ksearch_hide();
if (ref.ksearch_input)
this.ksearch_input.focus();
}; };
this.ksearch_blur = function() this.ksearch_blur = function()
@ -4006,7 +4006,6 @@ function rcube_webmail()
{ {
if (typeof(obj.selectionEnd)!='undefined') if (typeof(obj.selectionEnd)!='undefined')
return obj.selectionEnd; return obj.selectionEnd;
else if (document.selection && document.selection.createRange) else if (document.selection && document.selection.createRange)
{ {
var range = document.selection.createRange(); var range = document.selection.createRange();
@ -4024,7 +4023,6 @@ function rcube_webmail()
return p<=obj.value.length ? p : -1; return p<=obj.value.length ? p : -1;
} }
else else
return obj.value.length; return obj.value.length;
}; };

Loading…
Cancel
Save