Files
EasySoft-ZenTaoPMS/module/testreport/js/common.js
2017-03-20 15:13:08 +08:00

14 lines
332 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');
});