Only set height/width if it's a non-negative number (don't set it to 0).
This commit is contained in:
parent
cb3a9c14f1
commit
8b7015987c
|
@ -123,7 +123,11 @@ jQuery.each(["height", "width"], function( i, name ) {
|
||||||
|
|
||||||
set: function( elem, value ) {
|
set: function( elem, value ) {
|
||||||
// ignore negative width and height values #1599
|
// ignore negative width and height values #1599
|
||||||
return Math.max( parseFloat(value), 0 ) + "px";
|
value = parseFloat(value);
|
||||||
|
|
||||||
|
if ( value >= 0 ) {
|
||||||
|
return value + "px";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue