mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Effects: remove width/height exception for oldIE
Fixes gh-2488 Close gh-2849
This commit is contained in:
parent
a6fc0b1651
commit
e04e246552
2
src/effects.js
vendored
2
src/effects.js
vendored
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user