Skip to content

Commit

Permalink
Hosting: shuttleManagement, no name cannot save
Browse files Browse the repository at this point in the history
  • Loading branch information
stories2 committed Feb 14, 2019
1 parent bff0a7c commit 5416ff8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions public/assets/view/shuttleManagement.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ <h4>셔틀버스의 공지 메시지, 경로, 정류소, 시간표를 편집할
<label>전체 달구지 경로</label>
<textarea ng-model="shuttleRoutePath" type="text" rows="4"></textarea>
</md-input-container>
<md-button ng-click="submitRoutePath(shuttleRoutePath)"><div class="fa fa-2x fa-check"></div></md-button>
<md-button ng-click="submitRoutePath(shuttleRoutePath)" ng-disabled="shuttleRoutePath == '' || shuttleRoutePath == undefined"><div class="fa fa-2x fa-check"></div></md-button>
<md-button class="md-secondary" ng-click="onLoad()"><div class="fa fa-2x fa-sync"></div></md-button>
</div>
<div class="box alt">
Expand Down Expand Up @@ -140,7 +140,7 @@ <h4># {{ routineKey }}</h4>
</md-input-container>

<md-button class="md-secondary" ng-click="deleteRoutine(routine, $index)" style="min-height: auto;min-width: auto"><div class="fa fa-2x fa-trash"></div></md-button>
<md-button class="md-secondary" ng-click="submitRoutine(routine, $index)" style="min-height: auto;min-width: auto"><div class="fa fa-2x fa-check"></div></md-button>
<md-button class="md-secondary" ng-click="submitRoutine(routine, $index)" style="min-height: auto;min-width: auto" ng-disabled="routine['routineName'] == '' || routine['routineName'] == undefined"><div class="fa fa-2x fa-check"></div></md-button>
<md-button class="md-secondary" ng-disabled="routine['routineKey'] == '' || routine['routineKey'] == undefined" ng-click="expandStation(routine, $index)" style="min-height: auto;min-width: auto"><div class="fa fa-2x fa-arrow-down"></div></md-button>
</md-list-item>

Expand All @@ -166,7 +166,7 @@ <h4>현재 [{{ routineName }}]에 속한 정류소를 편집하고 있습니다.
</md-input-container>

<md-button class="md-secondary" ng-click="deleteStation(station, $index)" style="min-height: auto;min-width: auto"><div class="fa fa-2x fa-trash"></div></md-button>
<md-button class="md-secondary" ng-click="submitStation(station, $index)" style="min-height: auto;min-width: auto"><div class="fa fa-2x fa-check"></div></md-button>
<md-button class="md-secondary" ng-click="submitStation(station, $index)" style="min-height: auto;min-width: auto" ng-disabled="station['stationName'] == '' || station['stationName'] == undefined"><div class="fa fa-2x fa-check"></div></md-button>
<md-button class="md-secondary" ng-disabled="station['stationKey'] == '' || station['stationKey'] == undefined" ng-click="expandSchedule(station, $index)" style="min-height: auto;min-width: auto"><div class="fa fa-2x fa-arrow-down"></div></md-button>
</md-list-item>

Expand Down

0 comments on commit 5416ff8

Please sign in to comment.