Files
EasySoft-ZenTaoPMS/module/testreport/js/common.js
T
2020-07-26 14:44:40 +08:00

18 lines
360 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();
});
function changeDate()
{
$("#refresh").removeAttr("style");
}