firefly-iii/public/js/bills.js

9 lines
229 B
JavaScript

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