mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
19 lines
521 B
JavaScript
19 lines
521 B
JavaScript
/* globals google, categoryReportUri, budgetReportUri, balanceReportUri */
|
|
|
|
|
|
$(function () {
|
|
"use strict";
|
|
drawChart();
|
|
|
|
loadAjaxPartial('categoryReport', categoryReportUri);
|
|
loadAjaxPartial('budgetReport', budgetReportUri);
|
|
loadAjaxPartial('balanceReport',balanceReportUri);
|
|
});
|
|
|
|
function drawChart() {
|
|
"use strict";
|
|
|
|
// month view:
|
|
// draw account chart
|
|
lineChart('chart/account/report/' + reportType + '/' + startDate + '/' + endDate + '/' + accountIds, 'account-balances-chart');
|
|
} |