Overview
Comment: | [fx] fix confusion between ShadowHost and ShadowRoot |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | fx |
Files: | files | file ages | folders |
SHA3-256: |
8e9c0e9371e8a9110aefd769c6d70d12 |
User & Date: | olr on 2020-04-30 00:08:53 |
Other Links: | manifest | tags |
Context
2020-04-30
| ||
05:48 | [fx] rename variables: ShadowHost and ShadowRoot check-in: f6a0d24f4b user: olr tags: trunk, fx | |
00:08 | [fx] fix confusion between ShadowHost and ShadowRoot check-in: 8e9c0e9371 user: olr tags: trunk, fx | |
2020-04-29
| ||
20:13 | [fr] màj dictionnaires check-in: 6628d6ed1a user: olr tags: trunk, fr | |
Changes
Modified gc_lang/fr/webext/content_scripts/menu.js from [60324e1838] to [4011ec8d5e].
︙ | ︙ | |||
88 89 90 91 92 93 94 | this.xButton.style.left = `${oCoord.left}px`; } } insertIntoPage () { this.bShadow = document.body.createShadowRoot || document.body.attachShadow; if (this.bShadow) { | | | | | | | 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | this.xButton.style.left = `${oCoord.left}px`; } } insertIntoPage () { this.bShadow = document.body.createShadowRoot || document.body.attachShadow; if (this.bShadow) { this.xShadowHost = oGrammalecte.createNode("div", { id: "grammalecte_menu_main_button_shadow", style: "width:0; height:0;" }); this.xShadowRoot = this.xShadowHost.attachShadow({ mode: "open" }); oGrammalecte.createStyle("content_scripts/menu.css", null, this.xShadowRoot); this.xShadowRoot.appendChild(this.xButton); document.body.appendChild(this.xShadowHost); } else { if (!document.getElementById("grammalecte_cssmenu")) { oGrammalecte.createStyle("content_scripts/menu.css", "grammalecte_cssmenu", document.head); } document.body.appendChild(this.xButton); } |
︙ | ︙ |