310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
|
// SpellChecker
function setDictionary (sDictionary, oDict, dInfo) {
if (!oSpellChecker) {
postMessage(createResponse("setDictionary", "# Error. SpellChecker not loaded.", dInfo, true));
return;
}
console.log("setDictionary", sDictionary);
switch (sDictionary) {
case "main":
oSpellChecker.setMainDictionary(oDict);
break;
case "extended":
oSpellChecker.setExtendedDictionary(oDict);
break;
|
|
|
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
|
// SpellChecker
function setDictionary (sDictionary, oDict, dInfo) {
if (!oSpellChecker) {
postMessage(createResponse("setDictionary", "# Error. SpellChecker not loaded.", dInfo, true));
return;
}
//console.log("setDictionary", sDictionary);
switch (sDictionary) {
case "main":
oSpellChecker.setMainDictionary(oDict);
break;
case "extended":
oSpellChecker.setExtendedDictionary(oDict);
break;
|
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
|
}
function setDictionaryOnOff (sDictionary, bActivate, dInfo) {
if (!oSpellChecker) {
postMessage(createResponse("setDictionary", "# Error. SpellChecker not loaded.", dInfo, true));
return;
}
console.log("setDictionaryOnOff", sDictionary, bActivate);
switch (sDictionary) {
case "extended":
if (bActivate) {
oSpellChecker.activateExtendedDictionary();
} else {
oSpellChecker.deactivateExtendedDictionary();
}
|
|
|
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
|
}
function setDictionaryOnOff (sDictionary, bActivate, dInfo) {
if (!oSpellChecker) {
postMessage(createResponse("setDictionary", "# Error. SpellChecker not loaded.", dInfo, true));
return;
}
//console.log("setDictionaryOnOff", sDictionary, bActivate);
switch (sDictionary) {
case "extended":
if (bActivate) {
oSpellChecker.activateExtendedDictionary();
} else {
oSpellChecker.deactivateExtendedDictionary();
}
|