Overview
| Comment: | [fx] cancel code cosmetics | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | fx | comunicate | 
| Files: | files | file ages | folders | 
| SHA3-256: | 
ff2b908b6718fa6850362d5565827476 | 
| User & Date: | olr on 2020-03-10 08:56:34 | 
| Other Links: | branch diff | manifest | tags | 
Context
| 
   2020-03-10 
 | ||
| 08:56 | [fx] cancel code cosmetics Leaf check-in: ff2b908b67 user: olr tags: fx, comunicate | |
| 08:43 | [fx] cancel code cosmetics check-in: bcfa44ecc9 user: olr tags: fx, comunicate | |
Changes
Modified gc_lang/fr/webext/content_scripts/init.js from [ea813fb0f0] to [ed619d9108].
| ︙ | ︙ | |||
114 115 116 117 118 119 120  | 
                //console.log(oTinyAdd, xNode, parentNode, parentNode.classList);
                oTinyAdd[xNode.id] = true;
                sendToWebpage({ tiny: xNode.id.replace("_ifr", "") });
            }
        }
        this.xObserver = new MutationObserver(function (mutations) {
            mutations.forEach(function (mutation) {
 | |  | 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128  | 
                //console.log(oTinyAdd, xNode, parentNode, parentNode.classList);
                oTinyAdd[xNode.id] = true;
                sendToWebpage({ tiny: xNode.id.replace("_ifr", "") });
            }
        }
        this.xObserver = new MutationObserver(function (mutations) {
            mutations.forEach(function (mutation) {
                for (let i = 0;  i < mutation.addedNodes.length;  i++) {
                    let MutationNode = mutation.addedNodes[i];
                    let tagName = MutationNode.tagName;
                    if (tagName == "TEXTAREA") {
                        oGrammalecte.lMenu.push(new GrammalecteMenu(oGrammalecte.nMenu, MutationNode));
                        oGrammalecte.nMenu += 1;
                    } else if (tagName == "IFRAME") {
 | 
| ︙ | ︙ |