firefly-iii/public/js/bills.js

9 lines
323 B
JavaScript
Raw Normal View History

2015-06-27 05:04:53 -05:00
/* global comboChart, billID */
2015-02-25 08:19:14 -06:00
2015-05-24 11:22:41 -05:00
$(document).ready(function () {
"use strict";
2015-06-27 05:04:53 -05:00
if (typeof(comboChart) === 'function' && typeof(billID) !== 'undefined') {
comboChart('chart/bill/' + billID, 'bill-overview');
2015-05-24 11:22:41 -05:00
}
}
2015-02-25 08:19:14 -06:00
);