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

Commit 53709f0

Browse files
MaarOfOzpkozlowski-opensource
authored andcommitted
fix(timepicker): use html5 for input elements
1 parent cf22882 commit 53709f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

template/timepicker/timepicker.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<td ng-show="showMeridian"></td>
77
</tr>
88
<tr>
9-
<td class="control-group" ng-class="{'error': invalidHours}"><input type="text" ng-model="hours" ng-change="updateHours()" class="span1 text-center" ng-mousewheel="incrementHours()" ng-readonly="readonlyInput" maxlength="2" /></td>
9+
<td class="control-group" ng-class="{'error': invalidHours}"><input type="text" ng-model="hours" ng-change="updateHours()" class="span1 text-center" ng-mousewheel="incrementHours()" ng-readonly="readonlyInput" maxlength="2"></td>
1010
<td>:</td>
1111
<td class="control-group" ng-class="{'error': invalidMinutes}"><input type="text" ng-model="minutes" ng-change="updateMinutes()" class="span1 text-center" ng-readonly="readonlyInput" maxlength="2"></td>
1212
<td ng-show="showMeridian"><button type="button" ng-click="toggleMeridian()" class="btn text-center">{{meridian}}</button></td>
@@ -17,4 +17,4 @@
1717
<td><a ng-click="decrementMinutes()" class="btn btn-link"><i class="icon-chevron-down"></i></a></td>
1818
<td ng-show="showMeridian"></td>
1919
</tr>
20-
</table>
20+
</table>

0 commit comments

Comments
 (0)