From: lrbabe Date: Mon, 11 Oct 2010 14:08:38 +0000 (+0200) Subject: Make $.fn.animate compatible with jQuery.cssHooks X-Git-Url: http://git.asbjorn.biz/?a=commitdiff_plain;ds=sidebyside;h=aa9e4db1ab5cd6f514de616070829d64d69a3428;p=jquery.git Make $.fn.animate compatible with jQuery.cssHooks --- diff --git a/src/effects.js b/src/effects.js index 241dbd0..8c0985b 100644 --- a/src/effects.js +++ b/src/effects.js @@ -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