Differences From Artifact [5edde2a5fd]:
- File gc_lang/fr/webext/gce_worker.js — part of check-in [d7eb5a15ee] at 2017-09-15 08:16:13 on branch trunk — [core][fx] ibdawg: fix bugs, WebExt: retrieve spelling suggestion (user: olr, size: 11417) [annotate] [blame] [check-ins using]
To Artifact [ad4b1695da]:
- File gc_lang/fr/webext/gce_worker.js — part of check-in [4b57907a81] at 2017-09-15 10:01:02 on branch trunk — [core][js] fix spell suggestion engine (user: olr, size: 11393) [annotate] [blame] [check-ins using]
︙ | |||
284 285 286 287 288 289 290 | 284 285 286 287 288 289 290 291 292 293 294 295 296 297 | - | function getSpellSuggestions (sWord, dInfo) { if (!oDict) { postMessage(createResponse("getSpellSuggestions", "# Error. Dictionary not loaded.", dInfo, true)); return; } let aSugg = oDict.suggest(sWord); |
︙ |