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

Commit a726b7c

Browse files
committed
fix(timepicker): remove ng-mousewheel binding
The timepicker template has an ng-mousewheel binding on the hours input element and the TimepickerController also binds the elemeent to mouse wheel events. Removed ng-mousewheel binding from the template. Closes #3442
1 parent 7c1c75b commit a726b7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: template/timepicker/timepicker.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</tr>
99
<tr>
1010
<td class="form-group" ng-class="{'has-error': invalidHours}">
11-
<input style="width:50px;" type="text" ng-model="hours" ng-change="updateHours()" class="form-control text-center" ng-mousewheel="incrementHours()" ng-readonly="readonlyInput" maxlength="2">
11+
<input style="width:50px;" type="text" ng-model="hours" ng-change="updateHours()" class="form-control text-center" ng-readonly="readonlyInput" maxlength="2">
1212
</td>
1313
<td>:</td>
1414
<td class="form-group" ng-class="{'has-error': invalidMinutes}">

0 commit comments

Comments
 (0)