diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2016-03-23 15:03:06 +0100 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2016-03-30 23:45:17 +0200 |
commit | 6072d150d61655ec07f714e1d58a0bd7baa5ec3f (patch) | |
tree | 97ebfcd10460b6333d8429c6b2e255807409d15e /src/css/curCSS.js | |
parent | 693f1b537b0a19cda8b7e8f5379bffa5351b8a6e (diff) | |
download | jquery-6072d150d61655ec07f714e1d58a0bd7baa5ec3f.tar.gz jquery-6072d150d61655ec07f714e1d58a0bd7baa5ec3f.zip |
Docs: Update support comments to follow the new syntax
The changes follow the spec proposed in:
https://github.com/jquery/contribute.jquery.org/issues/95#issuecomment-69379197
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; |