Skip to content
This repository was archived by the owner on May 29, 2019. It is now read-only.

Commit 717ea69

Browse files
jkandasawesleycho
authored andcommitted
feat(timepicker): add placeholder for seconds input
- Adds `SS` placeholder for seconds input Closes #5257
1 parent a47580e commit 717ea69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

template/timepicker/timepicker.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
</td>
1919
<td ng-show="showSeconds" class="uib-separator">:</td>
2020
<td class="form-group uib-time seconds" ng-class="{'has-error': invalidSeconds}" ng-show="showSeconds">
21-
<input style="width:50px;" type="text" ng-model="seconds" ng-change="updateSeconds()" class="form-control text-center" ng-readonly="readonlyInput" maxlength="2" tabindex="{{::tabindex}}" ng-disabled="noIncrementSeconds()" ng-blur="blur()">
21+
<input style="width:50px;" type="text" placeholder="SS" ng-model="seconds" ng-change="updateSeconds()" class="form-control text-center" ng-readonly="readonlyInput" maxlength="2" tabindex="{{::tabindex}}" ng-disabled="noIncrementSeconds()" ng-blur="blur()">
2222
</td>
2323
<td ng-show="showMeridian" class="uib-time am-pm"><button type="button" ng-class="{disabled: noToggleMeridian()}" class="btn btn-default text-center" ng-click="toggleMeridian()" ng-disabled="noToggleMeridian()" tabindex="{{::tabindex}}">{{meridian}}</button></td>
2424
</tr>

0 commit comments

Comments
 (0)