mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-29 18:20:01 +00:00
11 lines
273 B
JavaScript
11 lines
273 B
JavaScript
/* globals $, categoryID */
|
|
$(function () {
|
|
"use strict";
|
|
if (typeof categoryID !== 'undefined') {
|
|
googleColumnChart('chart/category/' + categoryID + '/all', 'all');
|
|
googleColumnChart('chart/category/' + categoryID + '/month', 'month');
|
|
}
|
|
|
|
|
|
|
|
}); |