firefly-iii/public/js/bills.js

9 lines
229 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-06-28 05:41:58 -05:00
$(function () {
"use strict";
if (typeof(columnChart) === 'function' && typeof(billID) !== 'undefined') {
columnChart('chart/bill/' + billID, 'bill-overview');
2015-06-28 05:41:58 -05:00
}
}
2015-02-25 08:19:14 -06:00
);