Google Chrome has a built in spell check as you type. Just a week ago or so it stopped working in my comment section on my where I use wyswig and tinymce. It works in all other parts of the site and as a matter of fact it is working as I type here. Just won't work in the editor where comments are place

Comments

TwoD’s picture

Chrome's spellchecker is disabled by default (even on http://tinymce.moxiecode.com/tryit/full.php) because TinyMCE gives the body tag of the editing area spellcheck='false'.
There's a setting one can change so TinyMCE won't do that: gecko_spellcheck. (Does not only apply to gecko since all it does is set the spellcheck property/attribute of the body tag.)

Wysiwyg currently does not have a GUI to change this, but it can be done by implementing hook_wysiwyg_editor_settings_alter() in a small module:
sites/all/modules/MYMODULE/MYMODULE.info:

name = MYMODULE
description = My tweaks.
core = 6.x

sites/all/modules/MYMODULE/MYMODULE.module:

function MYMODULE_wysiwyg_editor_settings_alter(&$settings, $context) {
  if ($context['profile']->editor == 'tinymce') {
    $settings['gecko_spellcheck'] = TRUE;
  }
}
TwoD’s picture

Category: bug » support
Status: Active » Fixed
learnstocks101’s picture

Fixed..Thank You

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.