Overview
| Comment: | [fx] unlock textarea after gc | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | fx | webext2 | 
| Files: | files | file ages | folders | 
| SHA3-256: | 5a3323c9df93aac3fdd3694b19d9e167 | 
| User & Date: | olr on 2017-08-23 09:15:46 | 
| Other Links: | branch diff | manifest | tags | 
Context
| 2017-08-23 | ||
| 11:41 | [fx] exclude empty paragraph with no errors check-in: 2cc6384593 user: olr tags: fx, webext2 | |
| 09:15 | [fx] unlock textarea after gc check-in: 5a3323c9df user: olr tags: fx, webext2 | |
| 09:13 | [fx] use classes instead of singleton objects check-in: 49cb3f85b0 user: olr tags: fx, webext2 | |
Changes
Modified gc_lang/fr/webext/content_scripts/gc_content.js from [7bf90ff4d6] to [72e96a573e].
| ︙ | ︙ | |||
| 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | 
    clear () {
        while (this.xParagraphList.firstChild) {
            this.xParagraphList.removeChild(this.xParagraphList.firstChild);
        }
        this.aIgnoredErrors.clear();
    }
    addParagraphResult (oResult) {
        try {
            if (oResult) {
                let xNodeDiv = createNode("div", {className: "grammalecte_paragraph_block"});
                // actions
                let xActionsBar = createNode("div", {className: "grammalecte_paragraph_actions"});
 | > > > > > | 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"});
 | 
| ︙ | ︙ |