aboutsummaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorcash <cash.costello@gmail.com>2011-12-18 18:22:59 -0500
committercash <cash.costello@gmail.com>2011-12-18 18:22:59 -0500
commit5ee43086ec79b38e3f2cdb288f80bd5f24d413b1 (patch)
tree0a071ae95941d230b1abb9382e4558b8ff514c33 /js
parent96084b19f1caba6735afad6c89e7c0336e40c078 (diff)
downloadelgg-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.js2
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);