aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/css.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/css.js b/src/css.js
index 369485e47..8a83c6072 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";