Files
EasySoft-ZenTaoPMS/module/task/js/report.js
2015-05-12 14:58:24 +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();
$(window).resize(resizeChartTable);
});