Add text for empty box #800

This commit is contained in:
James Cole
2017-09-03 11:02:18 +02:00
parent 6b09466819
commit 25ea1c8f5f
3 changed files with 7 additions and 0 deletions

View File

@@ -109,6 +109,7 @@ function clickCategoryChart(e) {
"use strict";
var link = $(e.target);
var categoryId = link.data('category');
$('#category_help').remove();
var URL = 'chart/category/report-period/' + categoryId + '/' + accountIds + '/' + startDate + '/' + endDate;
var container = 'category_chart';
@@ -120,6 +121,7 @@ function clickBudgetChart(e) {
"use strict";
var link = $(e.target);
var budgetId = link.data('budget');
$('#budget_help').remove();
var URL = 'chart/budget/period/' + budgetId + '/' + accountIds + '/' + startDate + '/' + endDate;
var container = 'budget_chart';