2023-05-16 10:50:42 +08:00

19 lines
356 B
JavaScript

$(document).ready(function()
{
/* expand active tree. */
$('.tree li.active .hitarea').click();
fixHeight();
});
function fixHeight()
{
var maxHeight = 0;
$('.main .row .col-xs-4').each(function()
{
if(maxHeight < $(this).height()) maxHeight = $(this).height();
});
$('.main .row .col-xs-4').height(maxHeight);
}