Skip to content

Commit f8e1ed3

Browse files
committed
MC-5622: Unable to input text into TinyMCE4 WYSIWYG area on IE11 in Catalog Product
1 parent 2a80bb8 commit f8e1ed3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/web/mage/adminhtml/wysiwyg/tiny_mce/tinymce4Adapter.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -577,10 +577,10 @@ define([
577577
* Update text area.
578578
*/
579579
updateTextArea: function () {
580-
var editor = this.activeEditor(),
580+
var editor = this.get(this.getId()),
581581
content;
582582

583-
if (!editor) {
583+
if (!editor || (editor.id !== this.activeEditor().id)) {
584584
return;
585585
}
586586

0 commit comments

Comments
 (0)