Files
EasySoft-ZenTaoPMS/module/testreport/js/create.js
T
2017-03-14 11:33:18 +08:00

17 lines
420 B
JavaScript

$(function()
{
var resizeChartTable = function()
{
$('.table-wrapper').each(function()
{
var $this = $(this);
$this.css('max-height', $this.closest('.table').find('.chart-wrapper').outerHeight());
});
};
resizeChartTable();
fixedTableHead('.table-wrapper');
$('.tab-pane').removeClass('active');
$('.tab-pane:first').addClass('active');
});