Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/Drag.vue
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@

// Indicate that we're dragging.
this.dragging = true;

// Stop propagation of this event. In case we have nested drag components,
// we only want to drag the innermost dragged component, not start multiple
// drags at once (which isn't possible anyway)
nativeEvent.stopPropagation();
}

// At last, emit the event.
Expand Down