mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-31 19:27:51 -06:00
9 lines
229 B
JavaScript
9 lines
229 B
JavaScript
/* global comboChart, billID */
|
|
|
|
$(function () {
|
|
"use strict";
|
|
if (typeof(columnChart) === 'function' && typeof(billID) !== 'undefined') {
|
|
columnChart('chart/bill/' + billID, 'bill-overview');
|
|
}
|
|
}
|
|
); |