firefly-iii/public/js/bills.js
2015-05-24 18:22:41 +02:00

9 lines
341 B
JavaScript

/* global googleComboChart, billID */
$(document).ready(function () {
"use strict";
if (typeof(googleComboChart) === 'function' && typeof(billID) !== 'undefined') {
googleComboChart('chart/bill/' + billID, 'bill-overview');
}
}
);