From: jeresig Date: Thu, 9 Sep 2010 20:34:15 +0000 (-0400) Subject: Only set height/width if it's a non-negative number (don't set it to 0). X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;h=8b7015987cbd24c79f328bcf9260a6596a785bf5;p=jquery.git Only set height/width if it's a non-negative number (don't set it to 0). --- diff --git a/src/css.js b/src/css.js index dd0ca4e..b95eb47 100644 --- a/src/css.js +++ b/src/css.js @@ -123,7 +123,11 @@ jQuery.each(["height", "width"], function( i, name ) { set: function( elem, value ) { // ignore negative width and height values #1599 - return Math.max( parseFloat(value), 0 ) + "px"; + value = parseFloat(value); + + if ( value >= 0 ) { + return value + "px"; + } } }; });