firefly-iii/public/js/categories.js
2015-05-26 07:50:38 +02:00

11 lines
292 B
JavaScript

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