1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-12 17:54:44 +02:00
This commit is contained in:
Ryan Cramer
2019-03-04 11:01:33 -05:00
parent c41b670330
commit 621c34a417
2 changed files with 3 additions and 3 deletions

View File

@@ -723,9 +723,9 @@ function InputfieldColumnWidths($target) {
consoleLog('Adjusting ' + $item.attr('id') + ' from ' + h + ' to ' + maxColHeight);
var $spacer = $("<div class='maxColHeightSpacer'></div>");
$container.append($spacer);
$container.hide();
// $container.hide(); // removed per #124
$spacer.height(pad);
$container.show();
// $container.show(); // removed per #124
}
}

File diff suppressed because one or more lines are too long