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

9 lines
227 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(comboChart) === 'function' && typeof(billID) !== 'undefined') {
comboChart('chart/bill/' + billID, 'bill-overview');
}
}
2015-02-25 15:19:14 +01:00
);