We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 211dd25 commit 5e0dcafCopy full SHA for 5e0dcaf
app/code/Magento/Tinymce3/view/base/web/tiny_mce/themes/advanced/js/source_editor.js
@@ -10,8 +10,9 @@ function onLoadInit() {
10
tinyMCEPopup.resizeToInnerSize();
11
12
// Remove Gecko spellchecking
13
- if (tinymce.isGecko)
14
- document.body.spellcheck = tinyMCEPopup.editor.getParam("gecko_spellcheck");
+ if (tinymce.isGecko) {
+ document.body.spellcheck = tinyMCEPopup.editor.getParam("gecko_spellcheck", false);
15
+ }
16
17
document.getElementById('htmlSource').value = tinyMCEPopup.editor.getContent({source_view : true});
18
0 commit comments