Fixed a bug
This commit is contained in:
parent
61d2463c9d
commit
092cc348d6
|
|
@ -178,9 +178,9 @@
|
|||
}
|
||||
|
||||
function importGTFS() {
|
||||
stops = JSON.parse('{{ stops }}');
|
||||
routes = JSON.parse('{{ routes }}');
|
||||
timetable = JSON.parse('{{ timetable }}');
|
||||
stops = JSON.parse('{{ stops|safe }}');
|
||||
routes = JSON.parse('{{ routes|safe }}');
|
||||
timetable = JSON.parse('{{ timetable|safe }}');
|
||||
|
||||
alert("Import existing GTFS clicked");
|
||||
// Logic to import existing GTFS would go here
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user