Skip to content

Commit 36143ce

Browse files
committed
Merge branch 'unusedTrue' of http://github.com/lrbabe/jquery into lrbabe-unusedTrue
2 parents 9bd9ebd + 1a2400d commit 36143ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/effects.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ jQuery.fn.extend({
174174

175175
} else {
176176
var parts = rfxnum.exec(val),
177-
start = e.cur(true) || 0;
177+
start = e.cur() || 0;
178178

179179
if ( parts ) {
180180
var end = parseFloat( parts[2] ),
@@ -183,7 +183,7 @@ jQuery.fn.extend({
183183
// We need to compute starting value
184184
if ( unit !== "px" ) {
185185
jQuery.style( self, name, (end || 1) + unit);
186-
start = ((end || 1) / e.cur(true)) * start;
186+
start = ((end || 1) / e.cur()) * start;
187187
jQuery.style( self, name, start + unit);
188188
}
189189

0 commit comments

Comments
 (0)