Overview
| Comment: | [fx][bug] useless html entities when using textContent | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | fx | kill_innerHTML | 
| Files: | files | file ages | folders | 
| SHA3-256: | 
66c2ed43a6ce74b9e0892f581555e8c9 | 
| User & Date: | olr on 2017-07-18 07:56:38 | 
| Other Links: | branch diff | manifest | tags | 
Context
| 
   2017-07-18 
 | ||
| 08:35 | [fx] remember ignored errors check-in: 5a76e4a564 user: olr tags: fx, kill_innerHTML | |
| 07:56 | [fx][bug] useless html entities when using textContent check-in: 66c2ed43a6 user: olr tags: fx, kill_innerHTML | |
| 
   2017-07-15 
 | ||
| 08:51 | [fx] gc_panel: CSS update check-in: cdf07eecd4 user: olr tags: fx, kill_innerHTML | |
Changes
Modified gc_lang/fr/xpi/ui.js from [14a4e0411e] to [eccf91a376].
| ︙ | ︙ | |||
348 349 350 351 352 353 354  | 
    return true;
}
function checkAndSendToPanel (sIdParagraph, sText) {
    let xPromise = xGCEWorker.post('parseAndSpellcheck', [sText, "FR", false, false]);
    xPromise.then(
        function (aVal) {
 | <  | 348 349 350 351 352 353 354 355 356 357 358 359 360 361  | 
    return true;
}
function checkAndSendToPanel (sIdParagraph, sText) {
    let xPromise = xGCEWorker.post('parseAndSpellcheck', [sText, "FR", false, false]);
    xPromise.then(
        function (aVal) {
            xGCPanel.port.emit("refreshParagraph", sText, sIdParagraph, aVal);
        },
        function (aReason) {
            console.error('Promise rejected - ', aReason);
        }
    ).catch(
        function (aCaught) {
 | 
| ︙ | ︙ |