Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The WProofreader work in the CKEditor 4 requires turning off the SCAYT plugin. A free version of SpellCheckAsYouType (SCAYT) is provided as a plugin, integrated by default into into the CKEditor WYSIWYG editor. To remove the SCAYT plugin from CKEditor 4, add the following line to your CKEditor config.js file:

Code Block
languagejs
config.removePlugins = 'scayt';

If you want to leave the SCAYT plugin for CKEditor 4 available, but prevent it Set the config.scayt_autoStartup configuration setting as false  to prevent SCAYT from being turned on automatically on loading the editor, set the config.scayt_autoStartup configuration setting as false. This is the default value for CKEditor configuration. In this case, the SCAYT plugin for CKEditor 4 is available but turned off.

Code Block
languagejs
config.scayt_autoStartup = false;