Versions Compared

Key

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

...

The next step is to define necessary SCAYT parameters and options in the CKEditor config.js file.

2.1. Specify path to the SCAYT plugin (wscbundle.js) using scayt_srcUrl parameter. 

Code Block
languagejs
themeEmacs
config.scayt_srcUrl ="http(s)://your_host_name/spellcheckwscservice/wscbundle/wscbundle.js";

2.2. Define additional SCAYT parameters (e.g. start SCAYT spell and grammar automatically, change default language, etc.).

Code Block
languagejs
themeEmacs
config.scayt_autoStartup = true;
config.grayt_autoStartup = true;
config.scayt_sLang ="en_US";

...