fixing a timeline tooltip bug
This commit is contained in:
parent
e8e8be5b6d
commit
88a4f838ac
1 changed files with 5 additions and 1 deletions
|
@ -9105,6 +9105,8 @@ requires
|
|||
}
|
||||
|
||||
function mouseleave(e) {
|
||||
self.clientX = 0;
|
||||
self.clientY = 0;
|
||||
self.$tooltip.hide();
|
||||
}
|
||||
|
||||
|
@ -9144,7 +9146,9 @@ requires
|
|||
.appendTo(self.$timeline);
|
||||
}
|
||||
});
|
||||
updateTooltip();
|
||||
if (self.clientX && self.clientY) {
|
||||
updateTooltip();
|
||||
}
|
||||
}
|
||||
|
||||
function setWidth() {
|
||||
|
|
Loading…
Reference in a new issue