From: cash Date: Sun, 18 Dec 2011 23:22:59 +0000 (-0500) Subject: Refs #4192 adds proper 'px' to minHeight but does not solve the issue X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=5ee43086ec79b38e3f2cdb288f80bd5f24d413b1;p=lorea%2Felgg.git Refs #4192 adds proper 'px' to minHeight but does not solve the issue --- 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);