From e04e246552c27e872bbf4ae00b55def02b197189 Mon Sep 17 00:00:00 2001 From: Timmy Willison Date: Tue, 19 Jan 2016 13:48:05 -0500 Subject: [PATCH] Effects: remove width/height exception for oldIE Fixes gh-2488 Close gh-2849 --- src/effects.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/effects.js b/src/effects.js index db4b4101c..47a632c9f 100644 --- a/src/effects.js +++ b/src/effects.js @@ -238,7 +238,7 @@ function defaultPrefilter( elem, props, opts ) { dataShow[ prop ] = propTween.start; if ( hidden ) { propTween.end = propTween.start; - propTween.start = prop === "width" || prop === "height" ? 1 : 0; + propTween.start = 0; } } } -- 2.39.5