mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Replace uri with url
This commit is contained in:
18
public/v1/js/ff/budgets/show.js
vendored
18
public/v1/js/ff/budgets/show.js
vendored
@@ -18,20 +18,18 @@
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/** global: budgetChartUri, expenseCategoryUri, expenseAssetUri, expenseExpenseUri, budgetLimitID */
|
||||
|
||||
$(function () {
|
||||
"use strict";
|
||||
if (budgetLimitID > 0) {
|
||||
otherCurrencyLineChart(budgetChartUri, 'budgetOverview', currencySymbol);
|
||||
multiCurrencyPieChart(expenseCategoryUri, 'budget-cat-out');
|
||||
multiCurrencyPieChart(expenseAssetUri, 'budget-asset-out');
|
||||
multiCurrencyPieChart(expenseExpenseUri, 'budget-expense-out');
|
||||
otherCurrencyLineChart(budgetChartUrl, 'budgetOverview', currencySymbol);
|
||||
multiCurrencyPieChart(expenseCategoryUrl, 'budget-cat-out');
|
||||
multiCurrencyPieChart(expenseAssetUrl, 'budget-asset-out');
|
||||
multiCurrencyPieChart(expenseExpenseUrl, 'budget-expense-out');
|
||||
}
|
||||
if (budgetLimitID === 0) {
|
||||
columnChart(budgetChartUri, 'budgetOverview');
|
||||
multiCurrencyPieChart(expenseCategoryUri, 'budget-cat-out');
|
||||
multiCurrencyPieChart(expenseAssetUri, 'budget-asset-out');
|
||||
multiCurrencyPieChart(expenseExpenseUri, 'budget-expense-out');
|
||||
columnChart(budgetChartUrl, 'budgetOverview');
|
||||
multiCurrencyPieChart(expenseCategoryUrl, 'budget-cat-out');
|
||||
multiCurrencyPieChart(expenseAssetUrl, 'budget-asset-out');
|
||||
multiCurrencyPieChart(expenseExpenseUrl, 'budget-expense-out');
|
||||
}
|
||||
});
|
||||
|
Reference in New Issue
Block a user