Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | [fx] fix merge |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | fx | comdic |
Files: | files | file ages | folders |
SHA3-256: | e8375db0be30ad071c50b17c82ff55b6 |
User & Date: | olr 2019-03-15 14:08:05 |
Context
2019-04-03
| ||
14:18 | merge comdic check-in: 7217592c77 user: olr tags: trunk | |
2019-03-15
| ||
14:08 | [fx] fix merge Closed-Leaf check-in: e8375db0be user: olr tags: comdic, fx | |
14:00 | merge trunk check-in: 8ca82c9a7e user: olr tags: comdic | |
Changes
Changes to gc_lang/fr/webext/content_scripts/init.js.
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
}
}
}
},
observePage: function () {
// When a textarea is added via jascript we add the menu
let that = this;
let that = this;
this.xObserver = new MutationObserver(function (mutations) {
mutations.forEach(function (mutation) {
for (let i = 0; i < mutation.addedNodes.length; i++){
if (mutation.addedNodes[i].tagName == "TEXTAREA") {
if (that.oOptions === null || that.oOptions.textarea) {
oGrammalecte.lMenu.push(new GrammalecteMenu(oGrammalecte.nMenu, mutation.addedNodes[i]));
|
< |
100 101 102 103 104 105 106 107 108 109 110 111 112 113 |
} } } }, observePage: function () { // When a textarea is added via jascript we add the menu let that = this; this.xObserver = new MutationObserver(function (mutations) { mutations.forEach(function (mutation) { for (let i = 0; i < mutation.addedNodes.length; i++){ if (mutation.addedNodes[i].tagName == "TEXTAREA") { if (that.oOptions === null || that.oOptions.textarea) { oGrammalecte.lMenu.push(new GrammalecteMenu(oGrammalecte.nMenu, mutation.addedNodes[i])); |