firefly-iii/public/js/categories.js
2015-06-27 12:04:53 +02:00

11 lines
274 B
JavaScript

/* globals $, categoryID, columnChart */
$(function () {
"use strict";
if (typeof categoryID !== 'undefined') {
columnChart('chart/category/' + categoryID + '/all', 'all');
columnChart('chart/category/' + categoryID + '/month', 'month');
}
});