diff options
author | cash <cash.costello@gmail.com> | 2011-12-18 18:22:59 -0500 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-12-18 18:22:59 -0500 |
commit | 5ee43086ec79b38e3f2cdb288f80bd5f24d413b1 (patch) | |
tree | 0a071ae95941d230b1abb9382e4558b8ff514c33 /js | |
parent | 96084b19f1caba6735afad6c89e7c0336e40c078 (diff) | |
download | elgg-5ee43086ec79b38e3f2cdb288f80bd5f24d413b1.tar.gz elgg-5ee43086ec79b38e3f2cdb288f80bd5f24d413b1.tar.bz2 |
Refs #4192 adds proper 'px' to minHeight but does not solve the issue
Diffstat (limited to 'js')
-rw-r--r-- | js/lib/ui.widgets.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/lib/ui.widgets.js b/js/lib/ui.widgets.js index a44585843..47e43c876 100644 --- a/js/lib/ui.widgets.js +++ b/js/lib/ui.widgets.js @@ -190,7 +190,7 @@ elgg.ui.widgets.equalHeight = function(selector) { maxHeight = $(this).height(); } }) - $(selector).css('min-height', maxHeight); + $(selector).css('min-height', maxHeight + 'px'); }; elgg.register_hook_handler('init', 'system', elgg.ui.widgets.init); |