diff options
author | rwldrn <waldron.rick@gmail.com> | 2011-06-14 15:59:22 -0400 |
---|---|---|
committer | timmywil <tim.willison@thisismedium.com> | 2011-06-14 15:59:22 -0400 |
commit | 5eef5917fdb399ace2698154c4cd7bbd24f13182 (patch) | |
tree | f49e1a593fa4880032cafaf1ecfebb528a7ee66b /src | |
parent | 13ceb0f56b380b395ed5a26b468bf2bf00d88216 (diff) | |
download | jquery-5eef5917fdb399ace2698154c4cd7bbd24f13182.tar.gz jquery-5eef5917fdb399ace2698154c4cd7bbd24f13182.zip |
Landing pull request 409. Adds fillOpacity to internal cssNumber. Fixes #9548.
More Details:
- https://github.com/jquery/jquery/pull/409
- http://bugs.jquery.com/ticket/9548
Diffstat (limited to 'src')
-rw-r--r-- | src/css.js | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/css.js b/src/css.js index fcc784d29..c60bcdde0 100644 --- a/src/css.js +++ b/src/css.js @@ -50,13 +50,14 @@ jQuery.extend({ // Exclude the following css properties to add px cssNumber: { - "zIndex": true, + "fillOpacity": true, "fontWeight": true, - "opacity": true, - "zoom": true, "lineHeight": true, + "opacity": true, + "orphans": true, "widows": true, - "orphans": true + "zIndex": true, + "zoom": true }, // Add in properties whose names you wish to fix before |