We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0bc928 commit 9193e2eCopy full SHA for 9193e2e
src/cdk/drag-drop/drag-ref.ts
@@ -981,7 +981,7 @@ export class DragRef<T = any> {
981
982
// when pixel threshold = 0 and dragStartDelay = 0 and a preview container/position exists we immediately drag
983
if (
984
- event.type == 'mousedown' &&
+ (event.type == 'mousedown' || event.type == 'touchstart') &&
985
previewTemplate &&
986
this._config.dragStartThreshold === 0 &&
987
this._getDragStartDelay(event) === 0
0 commit comments