Overview
Comment: | [fx][bug] no empty suggestions. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | fx |
Files: | files | file ages | folders |
SHA3-256: |
fb259535c868213615a3aaef455cbde6 |
User & Date: | olr on 2017-08-15 19:50:10 |
Other Links: | manifest | tags |
Context
2017-08-16
| ||
21:31 | [fr] j’adorerai check-in: e21d7d8b7b user: olr tags: trunk, fr | |
2017-08-15
| ||
19:50 | [fx][bug] no empty suggestions. check-in: fb259535c8 user: olr tags: trunk, fx | |
19:21 | [fr] faux positif: ça a été check-in: 3b752e1bc9 user: olr tags: trunk, fr | |
Changes
Modified gc_lang/fr/xpi/data/gc_panel.js from [2be91c50eb] to [7f04c6a383].
︙ | ︙ | |||
320 321 322 323 324 325 326 | } else { document.getElementById("gc_url").style.display = "none"; } document.getElementById("gc_ignore").dataset.error_id = xNodeErr.dataset.error_id; let iSugg = 0; let xGCSugg = document.getElementById("gc_sugg_block"); xGCSugg.textContent = ""; | > | | | | > > > | 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 | } else { document.getElementById("gc_url").style.display = "none"; } document.getElementById("gc_ignore").dataset.error_id = xNodeErr.dataset.error_id; let iSugg = 0; let xGCSugg = document.getElementById("gc_sugg_block"); xGCSugg.textContent = ""; if (xNodeErr.dataset.suggestions.length > 0) { for (let sSugg of xNodeErr.dataset.suggestions.split("|")) { xGCSugg.appendChild(_createSuggestion(xNodeErr.dataset.error_id, iSugg, sSugg)); xGCSugg.appendChild(document.createTextNode(" ")); iSugg += 1; } } else { xGCSugg.textContent = "Aucune."; } } xNodeTooltipArrow.style.display = "block"; xNodeTooltip.style.display = "block"; if (xNodeErr.dataset.error_type === "spelling") { // spelling mistake document.getElementById("sc_ignore").dataset.error_id = xNodeErr.dataset.error_id; |
︙ | ︙ |