15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
this.nWidth = nWidth;
this.nHeight = nHeight;
this.bFlexible = bFlexible;
this.bHorizStrech = false;
this.bVertStrech = false;
this.nPositionX = 2;
this.nPositionY = 2;
this.bWorking = false;
this.bShadow = document.body.createShadowRoot || document.body.attachShadow;
if (this.bShadow) {
this.xShadowPanel = oGrammalecte.createNode("div", {id: this.sId+"_shadow", style: "width:0;height:0;"});
this.xShadow = this.xShadowPanel.attachShadow({mode: "open"});
this.xParent = this.xShadow;
|
>
|
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
this.nWidth = nWidth;
this.nHeight = nHeight;
this.bFlexible = bFlexible;
this.bHorizStrech = false;
this.bVertStrech = false;
this.nPositionX = 2;
this.nPositionY = 2;
this.bOpened = false;
this.bWorking = false;
this.bShadow = document.body.createShadowRoot || document.body.attachShadow;
if (this.bShadow) {
this.xShadowPanel = oGrammalecte.createNode("div", {id: this.sId+"_shadow", style: "width:0;height:0;"});
this.xShadow = this.xShadowPanel.attachShadow({mode: "open"});
this.xParent = this.xShadow;
|
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
|
}
document.body.appendChild(this.xPanel);
}
}
show () {
this.xPanel.style.display = "flex";
}
hide () {
this.xPanel.style.display = "none";
}
center () {
this.nPosition = 5;
this.setSizeAndPosition();
}
|
>
>
|
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
|
}
document.body.appendChild(this.xPanel);
}
}
show () {
this.xPanel.style.display = "flex";
this.bOpened = true;
}
hide () {
this.xPanel.style.display = "none";
this.bOpened = false;
}
center () {
this.nPosition = 5;
this.setSizeAndPosition();
}
|