mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Merge branch 'animateHooks' of http://github.com/lrbabe/jquery into lrbabe-animateHooks
This commit is contained in:
commit
d23f63b13e
4
src/effects.js
vendored
4
src/effects.js
vendored
@ -182,9 +182,9 @@ jQuery.fn.extend({
|
|||||||
|
|
||||||
// We need to compute starting value
|
// We need to compute starting value
|
||||||
if ( unit !== "px" ) {
|
if ( unit !== "px" ) {
|
||||||
self.style[ name ] = (end || 1) + unit;
|
jQuery.style( self, name, (end || 1) + unit);
|
||||||
start = ((end || 1) / e.cur(true)) * start;
|
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
|
// If a +=/-= token was provided, we're doing a relative animation
|
||||||
|
Loading…
Reference in New Issue
Block a user