Make sure that empty height/width values are still set.

This commit is contained in:
John Resig 2010-09-17 13:51:12 -04:00
parent 99fcf3babb
commit d1f3dc9a04

View file

@ -150,11 +150,16 @@ jQuery.each(["height", "width"], function( i, name ) {
},
set: function( elem, value ) {
// ignore negative width and height values #1599
value = parseFloat(value);
if ( value !== "" ) {
// ignore negative width and height values #1599
value = parseFloat(value);
if ( value >= 0 ) {
return value + "px";
if ( value >= 0 ) {
return value + "px";
}
} else {
return value;
}
}
};