Overview
| Comment: | [fx][js] test_panel: remove innerHTML |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | fx | kill_innerHTML |
| Files: | files | file ages | folders |
| SHA3-256: |
acf176c4b545365045c6131c1ddc66ba |
| User & Date: | olr on 2017-07-14 06:47:09 |
| Other Links: | branch diff | manifest | tags |
Context
|
2017-07-14
| ||
| 07:29 | [core][js] text: include line_id in text error check-in: e6f6ea9999 user: olr tags: core, kill_innerHTML | |
| 06:47 | [fx][js] test_panel: remove innerHTML check-in: acf176c4b5 user: olr tags: fx, kill_innerHTML | |
|
2017-07-13
| ||
| 17:30 | [fx][js] gc_panel revamping (part 2) check-in: 96809cd8cd user: olr tags: fx, kill_innerHTML | |
Changes
Modified gc_lang/fr/xpi/data/test_panel.js from [7ad6cf391b] to [c07ad2c400].
1 2 3 4 5 6 | // JavaScript /* Events */ | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
// JavaScript
/*
Events
*/
self.port.on("addElem", function (sText) {
let xElem = document.createElement("pre");
xElem.textContent = sText;
document.getElementById("results").appendChild(xElem);
});
self.port.on("clear", function () {
document.getElementById("results").textContent = "";
});
|
| ︙ | ︙ |
Modified gc_lang/fr/xpi/gce_worker.js from [ca6bb30dca] to [be41214f38].
| ︙ | ︙ | |||
122 123 124 125 126 127 128 |
gce.setOptions(helpers.objectToMap(JSON.parse(sGCOptions)));
}
let tests = require("resource://grammalecte/tests.js");
let oTest = new tests.TestGrammarChecking(gce);
let sAllRes = "";
for (let sRes of oTest.testParse()) {
dump(sRes+"\n");
| | | 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 |
gce.setOptions(helpers.objectToMap(JSON.parse(sGCOptions)));
}
let tests = require("resource://grammalecte/tests.js");
let oTest = new tests.TestGrammarChecking(gce);
let sAllRes = "";
for (let sRes of oTest.testParse()) {
dump(sRes+"\n");
sAllRes += sRes+"\n";
}
gce.setOptions(dMemoOptions);
return sAllRes;
}
// Lexicographer
|
| ︙ | ︙ |