Overview
| Comment: | [graphspell][tb] char_player: exports for Thunderbird |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | tb | graphspell |
| Files: | files | file ages | folders |
| SHA3-256: |
921d166404bf220df4a8c8b686319126 |
| User & Date: | olr on 2018-03-03 06:47:01 |
| Other Links: | manifest | tags |
Context
|
2018-03-03
| ||
| 06:47 | [tb][bug] fix use of spellchecking check-in: e5ad8f36b6 user: olr tags: trunk, tb | |
| 06:47 | [graphspell][tb] char_player: exports for Thunderbird check-in: 921d166404 user: olr tags: trunk, tb, graphspell | |
|
2018-03-02
| ||
| 23:36 | [fx] main panel: fix label check-in: e78ddb114f user: olr tags: trunk, fx | |
Changes
Modified graphspell-js/char_player.js from [8f9100bd09] to [af4041b6c7].
| ︙ | ︙ | |||
341 342 343 344 345 346 347 |
// Other functions
filterSugg: function (aSugg) {
return aSugg.filter((sSugg) => { return !sSugg.endsWith("è") && !sSugg.endsWith("È"); });
}
}
| > > > > > > > > > > > > > > > > > > > > > | 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 |
// Other functions
filterSugg: function (aSugg) {
return aSugg.filter((sSugg) => { return !sSugg.endsWith("è") && !sSugg.endsWith("È"); });
}
}
if (typeof(exports) !== 'undefined') {
exports._xTransCharsForSpelling = char_player._xTransCharsForSpelling;
exports.spellingNormalization = char_player.spellingNormalization;
exports._xTransCharsForSimplification = char_player._xTransCharsForSimplification;
exports.simplifyWord = char_player.simplifyWord;
exports.aVowel = char_player.aVowel;
exports.aConsonant = char_player.aConsonant;
exports.aDouble = char_player.aDouble;
exports.d1to1 = char_player.d1to1;
exports.d1toX = char_player.d1toX;
exports.get1toXReplacement = char_player.get1toXReplacement;
exports.d2toX = char_player.d2toX;
exports.dFinal1 = char_player.dFinal1;
exports.dFinal2 = char_player.dFinal2;
exports.aPfx1 = char_player.aPfx1;
exports.aPfx2 = char_player.aPfx2;
exports.cut = char_player.cut;
exports.filterSugg = char_player.filterSugg;
}
|