Make $.fn.animate compatible with jQuery.cssHooks
authorlrbabe <lrbabe@lrbabe-laptop.(none)>
Mon, 11 Oct 2010 14:08:38 +0000 (16:08 +0200)
committerlrbabe <lrbabe@lrbabe-laptop.(none)>
Mon, 11 Oct 2010 14:08:38 +0000 (16:08 +0200)
src/effects.js

index 241dbd0..8c0985b 100644 (file)
@@ -181,9 +181,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