Fix messages list focus issue in Opera and Webkit (#1489058)A

Conflicts:

	CHANGELOG
pull/88/head
Aleksander Machniak 11 years ago
parent 56aeedd9cd
commit 2f5495763b

@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
- Fix messages list focus issue in Opera and Webkit (#1489058)
- Fix Reply-To header handling in Reply-All action (#1489037)
- Fix so Sender: address is added to Cc: field on reply to all (#1489011)
- Fix so addressbook_search_mode works also for group search (#1489079)

@ -230,7 +230,9 @@ focus: function(e)
}
// Un-focus already focused elements (#1487123, #1487316, #1488600, #1488620)
// It looks that window.focus() does the job for all browsers, but not Firefox (#1489058)
$(':focus:not(body)').blur();
window.focus();
if (e || (e = window.event))
rcube_event.cancel(e);

Loading…
Cancel
Save