Fixed equal height columns jQuery with outerHeight(). Fixed labelling errors on admin settings.

This commit is contained in:
MickeyKay
2014-05-06 17:53:43 -07:00
parent ca307ef341
commit a0fdd02eef
2 changed files with 15 additions and 11 deletions
+2 -2
View File
@@ -101,8 +101,8 @@ jQuery(window).load(function() {
tallest = (minHeight) ? minHeight : 0;
items.each(function() {
jQuery(this).height('auto');
if(jQuery(this).height() > tallest) {
tallest = jQuery(this).height();
if(jQuery(this).outerHeight() > tallest) {
tallest = jQuery(this).outerHeight();
}
});