From efaf375e56920c9699c3d4ef09fb9171352aa8bb Mon Sep 17 00:00:00 2001 From: jeresig Date: Tue, 9 Nov 2010 23:33:18 -0500 Subject: [PATCH] Need to also handle the case where 'auto' is being returned, as in Firefox. Follow-up to #7395. --- src/css.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/css.js b/src/css.js index 369485e..8a83c60 100644 --- a/src/css.js +++ b/src/css.js @@ -179,7 +179,7 @@ jQuery.each(["height", "width"], function( i, name ) { if ( val != null ) { // Should return "auto" instead of 0, use 0 for // temporary backwards-compat - return val === "" ? "0px" : val; + return val === "" || val === "auto" ? "0px" : val; } } @@ -188,7 +188,7 @@ jQuery.each(["height", "width"], function( i, name ) { // Should return "auto" instead of 0, use 0 for // temporary backwards-compat - return val === "" ? "0px" : val; + return val === "" || val === "auto" ? "0px" : val; } return typeof val === "string" ? val : val + "px"; -- 1.7.10.4