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) {
self.clientX = 0;
self.clientY = 0;
self.$tooltip.hide();
}
@ -9144,8 +9146,10 @@ requires
.appendTo(self.$timeline);
}
});
if (self.clientX && self.clientY) {
updateTooltip();
}
}
function setWidth() {
self.center = parseInt(self.options.width / 2);