| OLD | NEW |
| 1 /*! | 1 /*! |
| 2 * jQuery JavaScript Library v1.3.2 | 2 * jQuery JavaScript Library v1.3.2 |
| 3 * http://jquery.com/ | 3 * http://jquery.com/ |
| 4 * | 4 * |
| 5 * Copyright (c) 2009 John Resig | 5 * Copyright (c) 2009 John Resig |
| 6 * Dual licensed under the MIT and GPL licenses. | 6 * Dual licensed under the MIT and GPL licenses. |
| 7 * http://docs.jquery.com/License | 7 * http://docs.jquery.com/License |
| 8 * | 8 * |
| 9 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009) | 9 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009) |
| 10 * Revision: 6246 | 10 * Revision: 6246 |
| (...skipping 4356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4367 size === undefined ? | 4367 size === undefined ? |
| 4368 // Get width or height on the element | 4368 // Get width or height on the element |
| 4369 (this.length ? jQuery.css( this[0], type
) : null) : | 4369 (this.length ? jQuery.css( this[0], type
) : null) : |
| 4370 | 4370 |
| 4371 // Set the width or height on the elemen
t (default to pixels if value is unitless) | 4371 // Set the width or height on the elemen
t (default to pixels if value is unitless) |
| 4372 this.css( type, typeof size === "string"
? size : size + "px" ); | 4372 this.css( type, typeof size === "string"
? size : size + "px" ); |
| 4373 }; | 4373 }; |
| 4374 | 4374 |
| 4375 }); | 4375 }); |
| 4376 })(); | 4376 })(); |
| OLD | NEW |