diff options
Diffstat (limited to 'src/css/curCSS.js')
-rw-r--r-- | src/css/curCSS.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/css/curCSS.js b/src/css/curCSS.js index 9054d4cf9..5f738c2d0 100644 --- a/src/css/curCSS.js +++ b/src/css/curCSS.js @@ -13,7 +13,7 @@ function curCSS( elem, name, computed ) { computed = computed || getStyles( elem ); - // Support: IE9 only + // Support: IE <=9 only // getPropertyValue is only needed for .css('filter') (#12537) if ( computed ) { ret = computed.getPropertyValue( name ) || computed[ name ]; @@ -47,7 +47,7 @@ function curCSS( elem, name, computed ) { return ret !== undefined ? - // Support: IE9-11 only + // Support: IE <=9 - 11 only // IE returns zIndex value as an integer. ret + "" : ret; |