Differences From Artifact [7bf90ff4d6]:
- File gc_lang/fr/webext/content_scripts/gc_content.js — part of check-in [49cb3f85b0] at 2017-08-23 09:13:28 on branch webext2 — [fx] use classes instead of singleton objects (user: olr, size: 19385) [annotate] [blame] [check-ins using]
To Artifact [72e96a573e]:
- File gc_lang/fr/webext/content_scripts/gc_content.js — part of check-in [5a3323c9df] at 2017-08-23 09:15:46 on branch webext2 — [fx] unlock textarea after gc (user: olr, size: 19481) [annotate] [blame] [check-ins using]
| ︙ | |||
65 66 67 68 69 70 71 72 73 74 75 76 77 78 | 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | + + + + + |
clear () {
while (this.xParagraphList.firstChild) {
this.xParagraphList.removeChild(this.xParagraphList.firstChild);
}
this.aIgnoredErrors.clear();
}
hide () {
this.xPanelNode.style.display = "none";
this.oTAC.clear();
}
addParagraphResult (oResult) {
try {
if (oResult) {
let xNodeDiv = createNode("div", {className: "grammalecte_paragraph_block"});
// actions
let xActionsBar = createNode("div", {className: "grammalecte_paragraph_actions"});
|
| ︙ |