From: John Resig Date: Mon, 25 Oct 2010 19:36:40 +0000 (-0700) Subject: Merge branch 'unusedTrue' of http://github.com/lrbabe/jquery into lrbabe-unusedTrue X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;h=36143ce63359cc64ebac696f27e4e7968caee902;hp=9bd9ebdd73fe0e2d29fadf82947c98adde4023e7;p=jquery.git Merge branch 'unusedTrue' of github.com/lrbabe/jquery into lrbabe-unusedTrue --- diff --git a/src/effects.js b/src/effects.js index d7896c0..44a7942 100644 --- a/src/effects.js +++ b/src/effects.js @@ -174,7 +174,7 @@ jQuery.fn.extend({ } else { var parts = rfxnum.exec(val), - start = e.cur(true) || 0; + start = e.cur() || 0; if ( parts ) { var end = parseFloat( parts[2] ), @@ -183,7 +183,7 @@ jQuery.fn.extend({ // We need to compute starting value if ( unit !== "px" ) { jQuery.style( self, name, (end || 1) + unit); - start = ((end || 1) / e.cur(true)) * start; + start = ((end || 1) / e.cur()) * start; jQuery.style( self, name, start + unit); }