Refactor #2650
parent
dcd119b67e
commit
8471c28e5a
|
@ -83,12 +83,8 @@ function show(el) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function hide(el) {
|
function hide(el) {
|
||||||
const tooltipElement = getTooltipElement(el);
|
|
||||||
remove(el);
|
remove(el);
|
||||||
unbindScrollListener(el);
|
unbindScrollListener(el);
|
||||||
if (tooltipElement) {
|
|
||||||
ZIndexUtils.clear(tooltipElement);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function getTooltipElement(el) {
|
function getTooltipElement(el) {
|
||||||
|
@ -134,6 +130,7 @@ function remove(el) {
|
||||||
if (el) {
|
if (el) {
|
||||||
let tooltipElement = getTooltipElement(el);
|
let tooltipElement = getTooltipElement(el);
|
||||||
if (tooltipElement && tooltipElement.parentElement) {
|
if (tooltipElement && tooltipElement.parentElement) {
|
||||||
|
ZIndexUtils.clear(tooltipElement);
|
||||||
document.body.removeChild(tooltipElement);
|
document.body.removeChild(tooltipElement);
|
||||||
}
|
}
|
||||||
el.$_ptooltipId = null;
|
el.$_ptooltipId = null;
|
||||||
|
|
Loading…
Reference in New Issue