Skip to content
This repository was archived by the owner on Oct 7, 2020. It is now read-only.

Commit f68f730

Browse files
authored
fix(select): Remove touchstart handler (#1787)
fix #1762
1 parent 0d9133d commit f68f730

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/select/select.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,7 @@ let nextUniqueId = 0;
9393
(change)="onChange($event)"
9494
(focus)="onFocus()"
9595
(keydown)="onKeydown($event)"
96-
(mousedown)="onInteraction($event)"
97-
(touchstart)="onInteraction($event)">{{_enhancedSelectedText}}</div>
96+
(mousedown)="onInteraction($event)">{{_enhancedSelectedText}}</div>
9897
<ng-content select="mdc-menu"></ng-content>
9998
</ng-container>
10099
<i class="mdc-select__dropdown-icon"></i>

0 commit comments

Comments
 (0)