Need to also handle the case where 'auto' is being returned, as in Firefox. Follow-up to #7395.
This commit is contained in:
parent
3394d32ea7
commit
efaf375e56
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue