mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-06 22:23:48 -06:00
7 lines
212 B
JavaScript
7 lines
212 B
JavaScript
|
$(document).ready(function () {
|
||
|
|
||
|
if (typeof(googleComboChart) === 'function' && typeof(billID) !== 'undefined') {
|
||
|
googleComboChart('chart/bills/' + billID, 'bill-overview');
|
||
|
}
|
||
|
}
|
||
|
);
|