mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-12 01:42:32 +00:00
Replace uri with url
This commit is contained in:
12
public/v1/js/ff/reports/default/all.js
vendored
12
public/v1/js/ff/reports/default/all.js
vendored
@@ -18,19 +18,17 @@
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/** global: accountReportUri, incomeReportUri, expenseReportUri, incExpReportUri, startDate, endDate, accountIds */
|
||||
|
||||
$(function () {
|
||||
"use strict";
|
||||
|
||||
|
||||
// load the account report, which this report shows:
|
||||
loadAjaxPartial('accountReport', accountReportUri);
|
||||
loadAjaxPartial('accountReport', accountReportUrl);
|
||||
|
||||
// load income and expense reports:
|
||||
loadAjaxPartial('incomeReport', incomeReportUri);
|
||||
loadAjaxPartial('expenseReport', expenseReportUri);
|
||||
loadAjaxPartial('incomeVsExpenseReport', incExpReportUri);
|
||||
loadAjaxPartial('billReport', billReportUri);
|
||||
loadAjaxPartial('incomeReport', incomeReportUrl);
|
||||
loadAjaxPartial('expenseReport', expenseReportUrl);
|
||||
loadAjaxPartial('incomeVsExpenseReport', incExpReportUrl);
|
||||
loadAjaxPartial('billReport', billReportUrl);
|
||||
|
||||
});
|
||||
|
||||
10
public/v1/js/ff/reports/default/month.js
vendored
10
public/v1/js/ff/reports/default/month.js
vendored
@@ -18,14 +18,12 @@
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/** global: categoryReportUri, budgetReportUri, balanceReportUri, accountChartUri */
|
||||
|
||||
$(function () {
|
||||
"use strict";
|
||||
lineChart(accountChartUri, 'account-balances-chart');
|
||||
lineChart(accountChartUrl, 'account-balances-chart');
|
||||
|
||||
loadAjaxPartial('categoryReport', categoryReportUri);
|
||||
loadAjaxPartial('budgetReport', budgetReportUri);
|
||||
loadAjaxPartial('balanceReport', balanceReportUri);
|
||||
loadAjaxPartial('categoryReport', categoryReportUrl);
|
||||
loadAjaxPartial('budgetReport', budgetReportUrl);
|
||||
loadAjaxPartial('balanceReport', balanceReportUrl);
|
||||
});
|
||||
|
||||
|
||||
12
public/v1/js/ff/reports/default/multi-year.js
vendored
12
public/v1/js/ff/reports/default/multi-year.js
vendored
@@ -18,15 +18,13 @@
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/** global: budgetPeriodReportUri, categoryExpenseUri, categoryIncomeUri, netWorthUri, opChartUri */
|
||||
|
||||
$(function () {
|
||||
"use strict";
|
||||
lineChart(netWorthUri, 'net-worth');
|
||||
columnChartCustomColours(opChartUri, 'income-expenses-chart');
|
||||
lineChart(netWorthUrl, 'net-worth');
|
||||
columnChartCustomColours(opChartUrl, 'income-expenses-chart');
|
||||
|
||||
loadAjaxPartial('budgetPeriodReport', budgetPeriodReportUri);
|
||||
loadAjaxPartial('categoryExpense', categoryExpenseUri);
|
||||
loadAjaxPartial('categoryIncome', categoryIncomeUri);
|
||||
loadAjaxPartial('budgetPeriodReport', budgetPeriodReportUrl);
|
||||
loadAjaxPartial('categoryExpense', categoryExpenseUrl);
|
||||
loadAjaxPartial('categoryIncome', categoryIncomeUrl);
|
||||
});
|
||||
|
||||
|
||||
12
public/v1/js/ff/reports/default/year.js
vendored
12
public/v1/js/ff/reports/default/year.js
vendored
@@ -18,15 +18,13 @@
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/** global: budgetPeriodReportUri, categoryExpenseUri, categoryIncomeUri, netWorthUri, opChartUri */
|
||||
|
||||
$(function () {
|
||||
"use strict";
|
||||
lineChart(netWorthUri, 'net-worth');
|
||||
columnChartCustomColours(opChartUri, 'income-expenses-chart');
|
||||
lineChart(netWorthUrl, 'net-worth');
|
||||
columnChartCustomColours(opChartUrl, 'income-expenses-chart');
|
||||
|
||||
loadAjaxPartial('budgetPeriodReport', budgetPeriodReportUri);
|
||||
loadAjaxPartial('categoryExpense', categoryExpenseUri);
|
||||
loadAjaxPartial('categoryIncome', categoryIncomeUri);
|
||||
loadAjaxPartial('budgetPeriodReport', budgetPeriodReportUrl);
|
||||
loadAjaxPartial('categoryExpense', categoryExpenseUrl);
|
||||
loadAjaxPartial('categoryIncome', categoryIncomeUrl);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user