316
317
318
319
320
321
322
323
324
325
326
327
328
329
|
oSpellChecker.setMainDictionary(oDict);
postMessage(createResponse("setDictionary", true, dInfo, true));
break;
case "extended":
oSpellChecker.setExtendedDictionary(oDict);
postMessage(createResponse("setDictionary", true, dInfo, true));
break;
case "personal":
oSpellChecker.setPersonalDictionary(oDict);
postMessage(createResponse("setDictionary", true, dInfo, true));
break;
default:
console.log("[worker] setDictionary: Unknown command");
}
|
>
>
>
>
|
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
|
oSpellChecker.setMainDictionary(oDict);
postMessage(createResponse("setDictionary", true, dInfo, true));
break;
case "extended":
oSpellChecker.setExtendedDictionary(oDict);
postMessage(createResponse("setDictionary", true, dInfo, true));
break;
case "community":
oSpellChecker.setCommunityDictionary(oDict);
postMessage(createResponse("setDictionary", true, dInfo, true));
break;
case "personal":
oSpellChecker.setPersonalDictionary(oDict);
postMessage(createResponse("setDictionary", true, dInfo, true));
break;
default:
console.log("[worker] setDictionary: Unknown command");
}
|