mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-31 19:27:51 -06:00
11 lines
274 B
JavaScript
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');
|
|
}
|
|
|
|
|
|
|
|
}); |