Merge branch 'animateHooks' of http://github.com/lrbabe/jquery into lrbabe-animateHooks
authorJohn Resig <jeresig@gmail.com>
Mon, 11 Oct 2010 20:44:12 +0000 (16:44 -0400)
committerJohn Resig <jeresig@gmail.com>
Mon, 11 Oct 2010 20:44:12 +0000 (16:44 -0400)
src/effects.js

index 8662df5..7d2cd8f 100644 (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