Closed (fixed)
Project:
Wysiwyg
Version:
6.x-2.3
Component:
Editor - TinyMCE
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
17 Feb 2011 at 05:50 UTC
Updated:
4 Mar 2011 at 01:41 UTC
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
Comment #1
twodChrome'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:
sites/all/modules/MYMODULE/MYMODULE.module:
Comment #2
twodComment #3
learnstocks101 commentedFixed..Thank You