File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 129
129
this . _handleCloseReleaseBound = this . _handleCloseRelease . bind ( this ) ;
130
130
this . _handleCloseTriggerClickBound = this . _handleCloseTriggerClick . bind ( this ) ;
131
131
132
- this . dragTarget . addEventListener ( 'touchmove' , this . _handleDragTargetDragBound ) ;
132
+ this . dragTarget . addEventListener ( 'touchmove' , this . _handleDragTargetDragBound , { passive : true } ) ;
133
133
this . dragTarget . addEventListener ( 'touchend' , this . _handleDragTargetReleaseBound ) ;
134
- this . _overlay . addEventListener ( 'touchmove' , this . _handleCloseDragBound ) ;
134
+ this . _overlay . addEventListener ( 'touchmove' , this . _handleCloseDragBound , { passive : true } ) ;
135
135
this . _overlay . addEventListener ( 'touchend' , this . _handleCloseReleaseBound ) ;
136
- this . el . addEventListener ( 'touchmove' , this . _handleCloseDragBound ) ;
136
+ this . el . addEventListener ( 'touchmove' , this . _handleCloseDragBound , { passive : true } ) ;
137
137
this . el . addEventListener ( 'touchend' , this . _handleCloseReleaseBound ) ;
138
138
this . el . addEventListener ( 'click' , this . _handleCloseTriggerClickBound ) ;
139
139
You can’t perform that action at this time.
0 commit comments