YUI: Dom: getXY rounding bug patch
Path Code
Place this code
after
the include for utilities.
YAHOO.util.Dom._getXY = YAHOO.util.Dom.getXY; YAHOO.util.Dom.getXY = function() { var xy = YAHOO.util.Dom._getXY.apply(this, arguments); return [Math.round(xy[0]), Math.round(xy[1])]; };