Overview
Comment: | [fx][tb] exclude signature from grammar checking |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | tb | fx |
Files: | files | file ages | folders |
SHA3-256: |
63e4b1591363f9062e33457711b3c895 |
User & Date: | olr on 2021-01-04 18:58:41 |
Other Links: | manifest | tags |
Context
2021-01-04
| ||
19:28 | [fx][tb] editor: fix wrong variable name check-in: 03ae204c73 user: olr tags: trunk, tb, fx | |
18:58 | [fx][tb] exclude signature from grammar checking check-in: 63e4b15913 user: olr tags: trunk, tb, fx | |
18:56 | [fr] ajustements et faux positifs check-in: 7cb6782e0a user: olr tags: trunk, fr | |
Changes
Modified gc_lang/fr/webext/content_scripts/editor.js from [17e5612fca] to [20f1f7547f].
︙ | ︙ | |||
121 122 123 124 125 126 127 | oGrammalecteTextEditor.loadText(sText); } * _getParsableNodes (xRootNode) { // recursive function try { for (let xNode of xRootNode.childNodes) { | | | 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 | oGrammalecteTextEditor.loadText(sText); } * _getParsableNodes (xRootNode) { // recursive function try { for (let xNode of xRootNode.childNodes) { if (xNode.className !== "moz-cite-prefix" && xNode.className !== "moz-forward-container" && xNode.className !== "moz-signature" && ! (bThunderbird && xNode.tagName == "BLOCKQUOTE" && xNode.cite) && ( xNode.nodeType == Node.TEXT_NODE || (xNode.nodeType == Node.ELEMENT_NODE && !xNode.textContent.startsWith(">")) ) && xNode.textContent !== "") { // console.log("tag:", xNode.tagName, "class:", xNode.className, " nodeType:", xNode.nodeType, " type:", xNode.type); if (xNode.tagName === undefined) { if (!this.bCheckSignature && xNode.textContent.startsWith("-- ")) { break; |
︙ | ︙ |