From d1210a5a88ee435b0f46918d03852cf2f8469ca9 Mon Sep 17 00:00:00 2001 From: Paul Bakaus Date: Tue, 24 Jun 2008 16:16:15 +0000 Subject: [PATCH] core: revertd last change, breaks width/height logic in css() --- src/core.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.js b/src/core.js index 6255dc5..924bf96 100644 --- a/src/core.js +++ b/src/core.js @@ -1358,7 +1358,7 @@ jQuery.each([ "Height", "Width" ], function(i, name){ // Get or set width or height on the element size == undefined ? // Get width or height on the element - (this.length ? num( this, type) : null) : + (this.length ? jQuery.css( this[0], type ) : null) : // Set the width or height on the element (default to pixels if value is unitless) this.css( type, size.constructor == String ? size : size + "px" ); -- 1.7.10.4