File tree Expand file tree Collapse file tree 4 files changed +14
-6
lines changed Expand file tree Collapse file tree 4 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 45
45
"station " => "Station " ,
46
46
"liveboardDescription " => "Hier onder vind je een lijst met alle treinen die naar een bepaald station rijden en hun mogelijke vertragingen. " ,
47
47
//
48
+ "mins " => "minuten wachten tot vertrek " ,
48
49
"404ErrorTitle " => "Pagina niet gevonden " ,
49
50
"404Explanation " => "We konden deze pagina niet vinden. Als je denkt dat dit een fout is, " ,
50
51
"goHome " => "Ga terug naar de homepage " ,
Original file line number Diff line number Diff line change 103
103
</strong >
104
104
</span >
105
105
<span class =" tright" >
106
- @ {{ conn.vias.number }}
107
106
<span class =" delay-route" ng-if =" conn.departure.delay > 0" >
108
107
<i class =" fa fa-exclamation-triangle" ></i >
109
108
</span >
109
+ <span ng-if =" conn.vias.number > 0" >
110
+ @ {{ conn.vias.number }}x <img src =" {{ URL:: asset (' images/stair.svg' ) } }" />
111
+ </span >
110
112
</span >
111
113
</span >
112
114
</a >
Original file line number Diff line number Diff line change 63
63
$http . get ( url )
64
64
. success ( function ( data ) {
65
65
$scope . parseResults ( data ) ;
66
- console . log ( data ) ;
67
66
window . history . pushState ( "departure" , "iRail.be" , "?to=" + $scope . destination . id
68
67
+ '&from=' + $scope . departure . id
69
68
+ '&date=' + ( $filter ( 'date' ) ( $scope . mydate , 'ddMMyy' ) )
238
237
$scope . departure = $scope . findStationById ( GetURLParameter ( 'from' ) ) ;
239
238
}
240
239
catch ( ex ) {
241
- console ( 'Could not link departure station from URL.' ) ;
240
+ console . log ( 'Could not link departure station from URL.' ) ;
242
241
}
243
242
}
244
243
if ( GetURLParameter ( 'to' ) !== 'undefined' ) {
245
244
try {
246
245
$scope . destination = $scope . findStationById ( GetURLParameter ( 'to' ) ) ;
247
246
}
248
247
catch ( ex ) {
249
- console ( 'Could not link destination station from URL.' ) ;
248
+ console . log ( 'Could not link destination station from URL.' ) ;
250
249
}
251
250
}
252
251
} ) ;
You can’t perform that action at this time.
0 commit comments