Skip to content

Commit 5e0dcaf

Browse files
committed
MAGETWO-99695: [MAGENTO CLOUD] The Update and Cancel buttons are missing in WYSIWYG editor in IE11
1 parent 211dd25 commit 5e0dcaf

File tree

1 file changed

+3
-2
lines changed
  • app/code/Magento/Tinymce3/view/base/web/tiny_mce/themes/advanced/js

1 file changed

+3
-2
lines changed

app/code/Magento/Tinymce3/view/base/web/tiny_mce/themes/advanced/js/source_editor.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ function onLoadInit() {
1010
tinyMCEPopup.resizeToInnerSize();
1111

1212
// Remove Gecko spellchecking
13-
if (tinymce.isGecko)
14-
document.body.spellcheck = tinyMCEPopup.editor.getParam("gecko_spellcheck");
13+
if (tinymce.isGecko) {
14+
document.body.spellcheck = tinyMCEPopup.editor.getParam("gecko_spellcheck", false);
15+
}
1516

1617
document.getElementById('htmlSource').value = tinyMCEPopup.editor.getContent({source_view : true});
1718

0 commit comments

Comments
 (0)