Merge branch 'animateHooks' of http://github.com/lrbabe/jquery into lrbabe-animateHooks

This commit is contained in:
John Resig 2010-10-11 16:44:12 -04:00
commit d23f63b13e

4
src/effects.js vendored
View file

@ -182,9 +182,9 @@ jQuery.fn.extend({
// We need to compute starting value
if ( unit !== "px" ) {
self.style[ name ] = (end || 1) + unit;
jQuery.style( self, name, (end || 1) + unit);
start = ((end || 1) / e.cur(true)) * start;
self.style[ name ] = start + unit;
jQuery.style( self, name, start + unit);
}
// If a +=/-= token was provided, we're doing a relative animation