Implemented a forgotten chart.

This commit is contained in:
James Cole
2015-06-28 12:41:58 +02:00
parent a8d60388ba
commit 60254dafd7
7 changed files with 65 additions and 14 deletions

View File

@@ -1,9 +1,9 @@
/* global comboChart, billID */
$(document).ready(function () {
"use strict";
if (typeof(comboChart) === 'function' && typeof(billID) !== 'undefined') {
comboChart('chart/bill/' + billID, 'bill-overview');
}
}
$(function () {
"use strict";
if (typeof(comboChart) === 'function' && typeof(billID) !== 'undefined') {
comboChart('chart/bill/' + billID, 'bill-overview');
}
}
);