Overview
| Comment: | [tb] code cleaning: fix import (not necessary for TextDecoder, TextEncoder) |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | tb |
| Files: | files | file ages | folders |
| SHA3-256: |
8ea07ff62713e1ce3b40ea8162cca796 |
| User & Date: | olr on 2018-08-07 12:40:29 |
| Original Comment: | [tb] code cleaning: fix import (not necessary for TextDecoder, TextEncoder |
| Other Links: | manifest | tags |
Context
|
2018-08-07
| ||
| 13:02 | [tb] deprecated code check-in: 0ecc0883e5 user: olr tags: trunk, tb | |
| 12:40 | [tb] code cleaning: fix import (not necessary for TextDecoder, TextEncoder) check-in: 8ea07ff627 user: olr tags: trunk, tb | |
| 09:03 | [graphspell][js] console.log() for debugging check-in: 31905c2c2f user: olr tags: trunk, graphspell | |
Changes
Modified gc_lang/fr/tb/content/file_handler.js from [6a1367bab5] to [1ba36d2189].
1 2 3 4 5 6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | - + + | // JavaScript "use strict"; // Assuming that Cc, Ci and Cu are already loaded |
| ︙ | |||
31 32 33 34 35 36 37 | 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | - + - + |
},
loadFile: async function (sFilename) {
if (!this.xDataFolder) {
this.prepareDataFolder();
}
try {
|
| ︙ |
Modified gc_lang/fr/tb/content/overlay.js from [99ae888938] to [f448460dc2].
| ︙ | |||
52 53 54 55 56 57 58 | 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | - |
}
}
},
function (aReason) { console.log('Promise rejected - ', aReason); }
).catch(
function (aCaught) { console.log('Promise Error - ', aCaught); }
);
|
| ︙ | |||
583 584 585 586 587 588 589 | 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 | - + |
setOptionsInPanel: function (oOptions) {
for (let sOptName in oOptions) {
//console.log(sOptName + ":" + oOptions[sOptName]);
if (document.getElementById(sOptName) !== null) {
document.getElementById(sOptName).checked = oOptions[sOptName];
if (sOptName.startsWith("o_group_")) {
this.switchGroup(sOptName);
|
| ︙ | |||
656 657 658 659 660 661 662 | 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 | - + |
applyOptions: function (sText) {
try {
const t0 = Date.now();
//window.setCursor("wait"); // change pointer
document.getElementById('progressbar').value = 0;
document.getElementById('progressbar').max = 6;
let n1 = 0, n2 = 0, n3 = 0, n4 = 0, n5 = 0, n6 = 0, n7 = 0;
|
| ︙ |
Modified gc_lang/fr/tb/content/overlay.xul from [0101f0b174] to [7f8f4b47ad].
| ︙ | |||
15 16 17 18 19 20 21 | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | - - + + |
<script type="application/javascript" src="editor.js"/>
<stringbundleset id="stringbundleset">
<stringbundle id="grammarchecker-strings" src="chrome://grammarchecker/locale/grammarchecker.properties"/>
</stringbundleset>
|
| ︙ | |||
340 341 342 343 344 345 346 | 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 | - + |
<!--
GRAMMAR CHECKING PANEL
-->
<splitter id="grammarchecker-splitter" state="collapsed" collapse="after"><grippy /></splitter>
|