diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2007-01-17 13:33:17 +0000 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2007-01-17 13:33:17 +0000 |
commit | 756183f6073a1e9fe6fae538d6f60899df47e2a1 (patch) | |
tree | a47d8577304ab777a6b24d3e04b09d6319566ed9 /src | |
parent | 3362ccf3ddc20d787551ffdb441ae606a3d06630 (diff) | |
download | jquery-756183f6073a1e9fe6fae538d6f60899df47e2a1.tar.gz jquery-756183f6073a1e9fe6fae538d6f60899df47e2a1.zip |
prop fix takes also "zoom" into account (see #803)
Diffstat (limited to 'src')
-rw-r--r-- | src/jquery/jquery.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index f756b67ab..67959697b 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -1268,7 +1268,7 @@ jQuery.extend({ return value.call( elem, [index] ); // exclude the following css properties to add px - var exclude = /z-?index|font-?weight|opacity/i; + var exclude = /z-?index|font-?weight|opacity|zoom/i; // Handle passing in a number to a CSS property if ( value.constructor == Number && type == "curCSS" && !exclude.test(prop) ) |