Differences From Artifact [9619f1038a]:
- File gc_lang/fr/webext/content_scripts/panel.js — part of check-in [e23d926562] at 2017-10-13 13:27:26 on branch webext3 — [fx] WebExt: clear registered node when closing panel (user: olr, size: 7284) [annotate] [blame] [check-ins using] [more...]
To Artifact [9072191a85]:
- File gc_lang/fr/webext/content_scripts/panel.js — part of check-in [b2893d0cb3] at 2017-10-23 10:16:44 on branch trunk — [fx][bug] tooltip positioning when window is enlarged (user: olr, size: 7356) [annotate] [blame] [check-ins using]
| ︙ | |||
126 127 128 129 130 131 132 133 134 135 136 137 138 139 | 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | + + + + |
// todo
}
adjustHeight () {
this.xPanelContent.style.height = this.xPanelContent.firstChild.offsetHeight + "px"; // xPanelContent has only one child
this.xPanel.style.height = this.xPanelBar.offsetHeight + this.xPanelContent.offsetHeight + 10 + "px";
}
getWidth () {
return this.xPanelContent.offsetWidth;
}
logInnerHTML () {
// for debugging
console.log(this.xPanel.innerHTML);
}
startWaitIcon () {
|
| ︙ |