Overview
| Comment: | [tb] remove console.log() |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | tb | multid |
| Files: | files | file ages | folders |
| SHA3-256: |
9510e5d68c0f9ecef3f5166494bee5a5 |
| User & Date: | olr on 2018-03-29 09:52:03 |
| Other Links: | branch diff | manifest | tags |
Context
|
2018-03-29
| ||
| 10:00 | [tb] code cleaning check-in: 208f30234a user: olr tags: tb, multid | |
| 09:52 | [tb] remove console.log() check-in: 9510e5d68c user: olr tags: tb, multid | |
| 09:48 | [tb] use Graphspell instead of Hunspell for spelling suggestions + [graphspell] str_transform: update exports bullshit again check-in: 35d2a24375 user: olr tags: tb, graphspell, multid | |
Changes
Modified gc_lang/fr/tb/content/overlay.js from [7168d199f9] to [3a15f802c4].
| ︙ | ︙ | |||
342 343 344 345 346 347 348 |
let xNodeSuggButton = document.createElement("span");
xNodeSuggButton.setAttribute("class", "suggestions_button");
xNodeSuggButton.textContent = "Suggestions : ";
xNodeSuggButton.addEventListener("click", (e) => {
let xPromise = this.xGCEWorker.post('suggest', [dErr['sValue'], 10]);
xPromise.then(
function (sVal) {
| < | 342 343 344 345 346 347 348 349 350 351 352 353 354 355 |
let xNodeSuggButton = document.createElement("span");
xNodeSuggButton.setAttribute("class", "suggestions_button");
xNodeSuggButton.textContent = "Suggestions : ";
xNodeSuggButton.addEventListener("click", (e) => {
let xPromise = this.xGCEWorker.post('suggest', [dErr['sValue'], 10]);
xPromise.then(
function (sVal) {
if (sVal != "") {
let lSugg = sVal.split("|");
let n = 0;
for (let sSugg of lSugg) {
if (true || n > 0) {
xNodeSuggLine.appendChild(document.createTextNode(" "));
}
|
| ︙ | ︙ |