diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2016-03-23 15:02:26 +0100 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2016-03-30 11:21:36 +0200 |
commit | 693f1b537b0a19cda8b7e8f5379bffa5351b8a6e (patch) | |
tree | cdac6abb995619db85db82eabe014f2ec52bc837 /src/effects.js | |
parent | 622db29d9c1aed1e51586db72861a1aab4d7606f (diff) | |
download | jquery-693f1b537b0a19cda8b7e8f5379bffa5351b8a6e.tar.gz jquery-693f1b537b0a19cda8b7e8f5379bffa5351b8a6e.zip |
Docs: Update support comments related to IE
All support comments were checked for Edge applicability.
Diffstat (limited to 'src/effects.js')
-rw-r--r-- | src/effects.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/effects.js b/src/effects.js index 47a632c9f..1c7e2c2f8 100644 --- a/src/effects.js +++ b/src/effects.js @@ -142,7 +142,7 @@ function defaultPrefilter( elem, props, opts ) { // Restrict "overflow" and "display" styles during box animations if ( isBox && elem.nodeType === 1 ) { - // Support: IE 9 - 11 + // Support: IE <=9 - 11, Edge 12 - 13 // Record all 3 overflow attributes because IE does not infer the shorthand // from identically-valued overflowX and overflowY opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; |