aboutsummaryrefslogtreecommitdiffstats
path: root/app/javascript/time_tables/actions
diff options
context:
space:
mode:
authorZog2018-01-24 16:56:16 +0100
committerZog2018-01-31 15:14:00 +0100
commit663effc415399c61d22dadbc235bb7488022d191 (patch)
treecc943f110c9245575c75ebe6cac4b7bfd7152149 /app/javascript/time_tables/actions
parentb83d26389e6726eaea86955c3a2d2bffa5e65b5e (diff)
downloadchouette-core-663effc415399c61d22dadbc235bb7488022d191.tar.bz2
Refs #5682 @3h; Use same UI as for timetables
Diffstat (limited to 'app/javascript/time_tables/actions')
-rw-r--r--app/javascript/time_tables/actions/index.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/app/javascript/time_tables/actions/index.js b/app/javascript/time_tables/actions/index.js
index 87c7a3e8d..70f548174 100644
--- a/app/javascript/time_tables/actions/index.js
+++ b/app/javascript/time_tables/actions/index.js
@@ -246,7 +246,8 @@ const actions = {
return error
},
fetchTimeTables: (dispatch, nextPage) => {
- let urlJSON = window.location.pathname.split('/', 5).join('/')
+ let urlJSON = window.timetablesUrl || window.location.pathname.split('/', 5).join('/')
+
if(nextPage) {
urlJSON += "/month.json?date=" + nextPage
}else{
@@ -277,7 +278,7 @@ const actions = {
let strDayTypes = actions.arrayToStrDayTypes(metas.day_types)
metas.day_types = strDayTypes
let sentState = assign({}, timetable, metas)
- let urlJSON = window.location.pathname.split('/', 5).join('/')
+ let urlJSON = window.timetablesUrl || window.location.pathname.split('/', 5).join('/')
let hasError = false
fetch(urlJSON + '.json', {
credentials: 'same-origin',