Skip to content

Commit

Permalink
Hosting: prevent cut word
Browse files Browse the repository at this point in the history
  • Loading branch information
stories2 committed Feb 14, 2019
1 parent 2e6b078 commit d74b141
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion public/assets/view/publicTransportBus.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ <h4>일부 대중교통의 도착정보를 안내하는 페이지입니다. 버
<md-list-item class="md-3-line" ng-repeat="(routeID, routeData) in platformData['routeList']" ng-click="null">
<div class="md-list-item-text" layout="column">
<h3>{{ routeData['name'] }}#{{ routeData['type'] }}</h3>
<h4>{{ routeData['arriveInfo'] }}</h4>
<h4 style="white-space: normal">{{ routeData['arriveInfo'] }}</h4>
<p>마지막 업데이트 시간: {{ routeData['lastUpdateDatetime'] }}</p>
</div>
</md-list-item>
Expand Down
2 changes: 1 addition & 1 deletion public/assets/view/publicTransportSubway.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ <h4>일부 대중교통의 도착정보를 안내하는 페이지입니다. 지
<md-list-item class="md-3-line" ng-repeat="(directionID, directionData) in platformData['routeList']" ng-click="null">
<div class="md-list-item-text" layout="column">
<h3>{{ directionData['name'] }}</h3>
<h4>{{ directionData['arriveInfo'] }}</h4>
<h4 style="white-space: normal">{{ directionData['arriveInfo'] }}</h4>
<p>마지막 업데이트 시간: {{ directionData['lastUpdateDatetime'] }}</p>
</div>
</md-list-item>
Expand Down

0 comments on commit d74b141

Please sign in to comment.