Final code for #595

This commit is contained in:
James Cole
2017-04-23 09:33:33 +02:00
parent 21c24fd7f0
commit 8ef9223d84
10 changed files with 61 additions and 76 deletions

View File

@@ -8,11 +8,15 @@
* See the LICENSE file for details.
*/
/** global: all, current, specific */
/** global: everything, current, specific */
$(function () {
"use strict";
columnChart(all, 'all');
columnChart(current, 'period');
columnChart(specific, 'period-specific-period');
console.log('Getting charts');
columnChart(everything, 'category-everything');
console.log('Specific: ' + specific);
columnChart(specific, 'specific-period');
});