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);
|
||||
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user