Skip to content

Commit e04e246

Browse files
committed
Effects: remove width/height exception for oldIE
Fixes jquerygh-2488 Close jquerygh-2849
1 parent a6fc0b1 commit e04e246

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/effects.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ function defaultPrefilter( elem, props, opts ) {
238238
dataShow[ prop ] = propTween.start;
239239
if ( hidden ) {
240240
propTween.end = propTween.start;
241-
propTween.start = prop === "width" || prop === "height" ? 1 : 0;
241+
propTween.start = 0;
242242
}
243243
}
244244
}

0 commit comments

Comments
 (0)