diff options
Diffstat (limited to 'jquery.equalheights.js')
-rw-r--r-- | jquery.equalheights.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jquery.equalheights.js b/jquery.equalheights.js index 6d2502e..d05c700 100644 --- a/jquery.equalheights.js +++ b/jquery.equalheights.js @@ -6,7 +6,7 @@ * Uses the same license as jQuery, see: * http://docs.jquery.com/License * - * @version 1.5.0 + * @version 1.5.1 */ (function($) { @@ -20,7 +20,7 @@ if ( height > maxHeight ) { maxHeight = height; } }); - return $this.height(maxHeight); + return $this.css('height', maxHeight); }; // auto-initialize plugin |