Files
firefly-iii/public/js/bills.js

9 lines
229 B
JavaScript
Raw Normal View History

2015-06-27 12:04:53 +02:00
/* global comboChart, billID */
2015-02-25 15:19:14 +01:00
2015-06-28 12:41:58 +02:00
$(function () {
"use strict";
if (typeof(columnChart) === 'function' && typeof(billID) !== 'undefined') {
columnChart('chart/bill/' + billID, 'bill-overview');
2015-06-28 12:41:58 +02:00
}
}
2015-02-25 15:19:14 +01:00
);