Grammalecte  Check-in [4afd98aa33]

Overview
Comment:[core][js] Textformater fix syntax change
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | core | nodejs
Files: files | file ages | folders
SHA3-256: 4afd98aa33775568aa8bb8e97a26695f251c031ec2a6571947e1a81323a6ad49
User & Date: IllusionPerdu on 2018-10-12 14:22:30
Other Links: branch diff | manifest | tags
Context
2018-10-12
17:44
[fx][js] In webext use new fonction of Textformater check-in: 189b40441e user: IllusionPerdu tags: core, fx, nodejs
14:22
[core][js] Textformater fix syntax change check-in: 4afd98aa33 user: IllusionPerdu tags: core, nodejs
14:20
[core][js] Textformater more usable check-in: c70980cc3c user: IllusionPerdu tags: core, nodejs
Changes

Modified gc_lang/fr/modules-js/textformatter.js from [c18f31aacd] to [6ee920637b].

345
346
347
348
349
350
351
352
353
354
355

    getReplTable(){
        return oReplTable;
    }
}


if (typeof exports !== 'undefined') {
    exports.TextFormatter = TextFormatter;
    exports.oReplTable = oReplTable;
}







|



345
346
347
348
349
350
351
352
353
354
355

    getReplTable(){
        return oReplTable;
    }
}


if (typeof(exports) !== 'undefined') {
    exports.TextFormatter = TextFormatter;
    exports.oReplTable = oReplTable;
}