firefly-iii/public/js/bills.js

7 lines
211 B
JavaScript
Raw Normal View History

2015-02-25 08:19:14 -06:00
$(document).ready(function () {
if (typeof(googleComboChart) === 'function' && typeof(billID) !== 'undefined') {
2015-05-16 02:57:31 -05:00
googleComboChart('chart/bill/' + billID, 'bill-overview');
2015-02-25 08:19:14 -06:00
}
}
);