Skip to content

Commit 27cb2c3

Browse files
Small tab fix
1 parent 025786c commit 27cb2c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/views/route/planner.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@
1616
<div class="form-group">
1717
<label for="departure">{{Lang::get('client.fromStation')}}</label>
1818
<div class="input-group">
19-
<input type="text" ng-model="departure" placeholder="{{Lang::get('client.typeFromStation')}}" typeahead="station as station.name for station in stations.stations | filter:{name:$viewValue} | limitTo:5" typeahead-template-url="customTemplate.html" class="form-control input-lg">
19+
<input type="text" ng-model="departure" placeholder="{{Lang::get('client.typeFromStation')}}" typeahead="station as station.name for station in stations.stations | filter:{name:$viewValue} | limitTo:5" typeahead-template-url="customTemplate.html" class="form-control input-lg" tabindex="1">
2020
<a class="input-group-addon" ng-show="departure.id" href="stations/NMBS/@{{departure.id}}" target="_blank" data-toggle="tooltip" data-placement="left" title="{{Lang::get('client.viewLiveboard')}}"><i class="fa fa-clock-o"></i></a>
2121
<span class="input-group-addon" ng-hide="departure.id"></span>
2222
</div>
2323
</div>
2424
<div class="form-group">
2525
<label for="destination">{{Lang::get('client.toStation')}}</label>
2626
<div class="input-group">
27-
<input type="text" ng-model="destination" placeholder="{{Lang::get('client.typeToStation')}}" typeahead="station as station.name for station in stations.stations | filter:{name:$viewValue} | limitTo:5" typeahead-template-url="customTemplate.html" typeahead-on-select='focusOnConfirm()' class="form-control input-lg">
27+
<input type="text" ng-model="destination" placeholder="{{Lang::get('client.typeToStation')}}" typeahead="station as station.name for station in stations.stations | filter:{name:$viewValue} | limitTo:5" typeahead-template-url="customTemplate.html" typeahead-on-select='focusOnConfirm()' class="form-control input-lg" tabindex="2">
2828
<a class="input-group-addon btn" ng-show="destination.id" href="stations/NMBS/@{{destination.id}}" target="_blank" data-toggle="tooltip" data-placement="left" title="{{Lang::get('client.viewLiveboard')}}"><i class="fa fa-clock-o"></i></a>
2929
<span class="input-group-addon" ng-hide="destination.id"></span>
3030
</div>

0 commit comments

Comments
 (0)