Fix bug where getting HTML editor content could steal focus from other form controls (#5223)

pull/5241/head
Aleksander Machniak 8 years ago
parent 7dad859ffa
commit 7abfe41ab7

@ -3,6 +3,7 @@ CHANGELOG Roundcube Webmail
- Enigma: Added enigma_debug option
- Fix message list multi-select/deselect issue (#5219)
- Fix bug where getting HTML editor content could steal focus from other form controls (#5223)
RELEASE 1.2-rc
--------------

@ -450,7 +450,6 @@ function rcube_text_editor(config, id)
// get selected text from tinymce editor
if (ed) {
ed.getWin().focus(); // correct focus in IE & Chrome
if (args.selection)
text = ed.selection.getContent({format: args.format});

Loading…
Cancel
Save