diff options
author | alecpl <alec@alec.pl> | 2010-11-30 20:16:25 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-11-30 20:16:25 +0000 |
commit | 43fb35b5cb97522e1fa3e358c8511788b7d02a3d (patch) | |
tree | cea9165616f9a1056447e27fed3c205ba6aa9a42 /program/js | |
parent | 489ffbde732bb0560e4b553bc97aa8b831b97d8f (diff) |
- Fix cursor position on compose form in Webkit browsers (#1486674)
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/editor.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/program/js/editor.js b/program/js/editor.js index 2ee4ac1ce..3845e3de4 100644 --- a/program/js/editor.js +++ b/program/js/editor.js @@ -71,8 +71,10 @@ function rcmail_editor_callback() 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 |