From 3dfa88020ea7d54f5290dba9ce51d61113286481 Mon Sep 17 00:00:00 2001 From: Thijs Alkemade Date: Wed, 16 Mar 2016 11:46:12 +0100 Subject: [PATCH] Fix use of absolute URLs for linecharts for the report pages. --- public/js/reports/default/month.js | 2 +- public/js/reports/default/reports.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/js/reports/default/month.js b/public/js/reports/default/month.js index be66324dff..22bb92dbc9 100644 --- a/public/js/reports/default/month.js +++ b/public/js/reports/default/month.js @@ -17,7 +17,7 @@ function drawChart() { // month view: // draw account chart - lineChart('/chart/account/report/' + reportType + '/' + startDate + '/' + endDate + '/' + accountIds, 'account-balances-chart'); + lineChart('chart/account/report/' + reportType + '/' + startDate + '/' + endDate + '/' + accountIds, 'account-balances-chart'); } diff --git a/public/js/reports/default/reports.js b/public/js/reports/default/reports.js index 23adac5fcd..306b876257 100644 --- a/public/js/reports/default/reports.js +++ b/public/js/reports/default/reports.js @@ -116,7 +116,7 @@ function drawChart() { } if (typeof lineChart !== 'undefined' && typeof accountIds !== 'undefined') { - lineChart('/chart/account/report/' + reportType + '/' + startDate + '/' + endDate + '/' + accountIds, 'account-balances-chart'); + lineChart('chart/account/report/' + reportType + '/' + startDate + '/' + endDate + '/' + accountIds, 'account-balances-chart'); } }