Files
firefly-iii/public/js/ff/categories/show.js

19 lines
437 B
JavaScript
Raw Normal View History

/*
* show.js
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
2017-04-23 09:33:33 +02:00
/** global: everything, current, specific */
2017-01-02 08:46:45 +01:00
2015-02-22 16:19:32 +01:00
$(function () {
2015-05-24 18:22:41 +02:00
"use strict";
2017-04-23 09:33:33 +02:00
columnChart(everything, 'category-everything');
columnChart(specific, 'specific-period');
2015-02-22 16:19:32 +01:00
});