firefly-iii/public/js/categories.js

11 lines
292 B
JavaScript
Raw Normal View History

2015-05-26 00:50:38 -05:00
/* globals $, categoryID, googleColumnChart */
2015-02-22 09:19:32 -06:00
$(function () {
2015-05-24 11:22:41 -05:00
"use strict";
2015-03-04 02:42:47 -06:00
if (typeof categoryID !== 'undefined') {
2015-05-16 02:57:31 -05:00
googleColumnChart('chart/category/' + categoryID + '/all', 'all');
googleColumnChart('chart/category/' + categoryID + '/month', 'month');
2015-02-22 09:19:32 -06:00
}
});