diff options
Diffstat (limited to 'src/effects.js')
-rw-r--r-- | src/effects.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/effects.js b/src/effects.js index 879b36135..b8da7ce37 100644 --- a/src/effects.js +++ b/src/effects.js @@ -148,9 +148,10 @@ function defaultPrefilter( elem, props, opts ) { // Restrict "overflow" and "display" styles during box animations if ( isBox && elem.nodeType === 1 ) { - // Support: IE <=9 - 11, Edge 12 - 13 + // Support: IE <=9 - 11, Edge 12 - 15 // Record all 3 overflow attributes because IE does not infer the shorthand - // from identically-valued overflowX and overflowY + // from identically-valued overflowX and overflowY and Edge just mirrors + // the overflowX value there. opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; // Identify a display type, preferring old show/hide data over the CSS cascade |