124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
|
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
+
+
|
insertIntoPage () {
if (this.bShadow) {
oGrammalecte.createStyle("content_scripts/panel.css", null, this.xShadowRoot);
oGrammalecte.createStyle("content_scripts/panel_gc.css", null, this.xShadowRoot);
oGrammalecte.createStyle("content_scripts/panel_lxg.css", null, this.xShadowRoot);
oGrammalecte.createStyle("content_scripts/panel_conj.css", null, this.xShadowRoot);
oGrammalecte.createStyle("content_scripts/panel_thes.css", null, this.xShadowRoot);
oGrammalecte.createStyle("content_scripts/panel_tf.css", null, this.xShadowRoot);
this.xShadowRoot.appendChild(this.xPanel);
document.body.appendChild(this.xShadowHost);
} else {
if (!document.getElementById("grammalecte_csspanel")) {
oGrammalecte.createStyle("content_scripts/panel.css", "grammalecte_csspanel", document.head);
oGrammalecte.createStyle("content_scripts/panel_gc.css", null, document.head);
oGrammalecte.createStyle("content_scripts/panel_lxg.css", null, document.head);
oGrammalecte.createStyle("content_scripts/panel_conj.css", null, document.head);
oGrammalecte.createStyle("content_scripts/panel_thes.css", null, document.head);
oGrammalecte.createStyle("content_scripts/panel_tf.css", null, document.head);
}
document.body.appendChild(this.xPanel);
}
}
show () {
|