88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
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")) {
|
|
|
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
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_host", 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")) {
|