18 lines
360 B
JavaScript
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");
|
|
}
|