mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Add text for empty box #800
This commit is contained in:
parent
6b09466819
commit
25ea1c8f5f
@ -109,6 +109,7 @@ function clickCategoryChart(e) {
|
|||||||
"use strict";
|
"use strict";
|
||||||
var link = $(e.target);
|
var link = $(e.target);
|
||||||
var categoryId = link.data('category');
|
var categoryId = link.data('category');
|
||||||
|
$('#category_help').remove();
|
||||||
|
|
||||||
var URL = 'chart/category/report-period/' + categoryId + '/' + accountIds + '/' + startDate + '/' + endDate;
|
var URL = 'chart/category/report-period/' + categoryId + '/' + accountIds + '/' + startDate + '/' + endDate;
|
||||||
var container = 'category_chart';
|
var container = 'category_chart';
|
||||||
@ -120,6 +121,7 @@ function clickBudgetChart(e) {
|
|||||||
"use strict";
|
"use strict";
|
||||||
var link = $(e.target);
|
var link = $(e.target);
|
||||||
var budgetId = link.data('budget');
|
var budgetId = link.data('budget');
|
||||||
|
$('#budget_help').remove();
|
||||||
|
|
||||||
var URL = 'chart/budget/period/' + budgetId + '/' + accountIds + '/' + startDate + '/' + endDate;
|
var URL = 'chart/budget/period/' + budgetId + '/' + accountIds + '/' + startDate + '/' + endDate;
|
||||||
var container = 'budget_chart';
|
var container = 'budget_chart';
|
||||||
|
@ -782,6 +782,9 @@ return [
|
|||||||
'account_role_sharedAsset' => 'Shared asset account',
|
'account_role_sharedAsset' => 'Shared asset account',
|
||||||
'account_role_savingAsset' => 'Savings account',
|
'account_role_savingAsset' => 'Savings account',
|
||||||
'account_role_ccAsset' => 'Credit card',
|
'account_role_ccAsset' => 'Credit card',
|
||||||
|
'budget_chart_click' => 'Please click on a budget name in the table above to see a chart.',
|
||||||
|
'category_chart_click' => 'Please click on a category name in the table above to see a chart.',
|
||||||
|
|
||||||
|
|
||||||
// charts:
|
// charts:
|
||||||
'chart' => 'Chart',
|
'chart' => 'Chart',
|
||||||
|
@ -129,6 +129,7 @@
|
|||||||
<h3 class="box-title">{{ 'chart'|_ }}</h3>
|
<h3 class="box-title">{{ 'chart'|_ }}</h3>
|
||||||
</div>
|
</div>
|
||||||
<div class="box-body">
|
<div class="box-body">
|
||||||
|
<p id="budget_help" class="text-muted text-center">{{ 'budget_chart_click'|_ }}</p>
|
||||||
<canvas id="budget_chart" style="width:100%;height:400px;" height="400" width="100%"></canvas>
|
<canvas id="budget_chart" style="width:100%;height:400px;" height="400" width="100%"></canvas>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -177,6 +178,7 @@
|
|||||||
<h3 class="box-title">{{ 'chart'|_ }}</h3>
|
<h3 class="box-title">{{ 'chart'|_ }}</h3>
|
||||||
</div>
|
</div>
|
||||||
<div class="box-body">
|
<div class="box-body">
|
||||||
|
<p id="category_help" class="text-muted text-center">{{ 'category_chart_click'|_ }}</p>
|
||||||
<canvas id="category_chart" style="width:100%;height:400px;" height="400" width="100%"></canvas>
|
<canvas id="category_chart" style="width:100%;height:400px;" height="400" width="100%"></canvas>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user