Fix focus issue in IE when selecting message row (#1488620)

Conflicts:

	CHANGELOG
pull/31/head
Aleksander Machniak 12 years ago
parent e8615cf494
commit 4938a0bcfb

@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
- Fix focus issue in IE when selecting message row (#1488620)
- Fix displaying all headers when they contain malformed characters (#1488666)
- Fix decoding of HTML messages with UTF-16 charset specified (#1488654)
- Fix quota capability detection so it can be overwritten by a plugin (#1488655)

@ -233,8 +233,8 @@ focus: function(e)
}
}
// Un-focus already focused elements
$(document.activeElement).blur();
// Un-focus already focused elements (#1487123, #1487316, #1488600, #1488620)
$(':focus:not(body)').blur();
$('iframe').each(function() { this.blur(); });
if (e || (e = window.event))

Loading…
Cancel
Save