- Fix cursor position on compose form in Webkit browsers (#1486674)
| | |
| | | - Fix attachments of type message/rfc822 are not listed on attachments list |
| | | - Add 'login_lc' config option for case-insensitive authentication (#1487113) |
| | | - Fix window is blur'ed in IE when selecting a message (#1487316) |
| | | - Fix cursor position on compose form in Webkit browsers (#1486674) |
| | | |
| | | RELEASE 0.5-BETA |
| | | ---------------- |
| | |
| | | if (elem && elem.type == 'select-one') { |
| | | rcmail.change_identity(elem); |
| | | // Focus previously focused element |
| | | if (fe && fe.id != rcmail.env.composebody) |
| | | if (fe && fe.id != rcmail.env.composebody) { |
| | | window.focus(); // for WebKit (#1486674) |
| | | fe.focus(); |
| | | } |
| | | } |
| | | |
| | | // set tabIndex and set focus to element that was focused before |