firefly-iii/public/js/bills.js
2015-06-28 12:41:58 +02:00

9 lines
227 B
JavaScript

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