Fix wrong compose screen elements focus in IE9 (#1488541)
Conflicts:
CHANGELOG
| | |
| | | CHANGELOG Roundcube Webmail |
| | | =========================== |
| | | |
| | | - Fix wrong compose screen elements focus in IE9 (#1488541) |
| | | - Fix redirect to mail/compose on re-login (#1488226) |
| | | - Add IE8 hack for messages list issue (#1487821) |
| | | - Fix handling errors on draft auto-save |
| | |
| | | rcmail.change_identity(elem); |
| | | // Focus previously focused element |
| | | if (fe && fe.id != rcmail.env.composebody) { |
| | | // use setTimeout() for IE9 (#1488541) |
| | | window.setTimeout(function() { |
| | | window.focus(); // for WebKit (#1486674) |
| | | fe.focus(); |
| | | }, 10); |
| | | } |
| | | } |
| | | |