fixing a timeline tooltip bug

This commit is contained in:
rolux 2010-09-18 13:35:22 +00:00
parent 3431b7ebdf
commit a44ecbafa0

View File

@ -9105,6 +9105,8 @@ requires
} }
function mouseleave(e) { function mouseleave(e) {
self.clientX = 0;
self.clientY = 0;
self.$tooltip.hide(); self.$tooltip.hide();
} }
@ -9144,7 +9146,9 @@ requires
.appendTo(self.$timeline); .appendTo(self.$timeline);
} }
}); });
updateTooltip(); if (self.clientX && self.clientY) {
updateTooltip();
}
} }
function setWidth() { function setWidth() {