Skip to content

Commit

Permalink
fix(sheet): prevent swiping sheet when swiping over enabled sortable
Browse files Browse the repository at this point in the history
  • Loading branch information
nolimits4web committed Aug 11, 2023
1 parent 9673b0b commit c92ad63
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/core/components/sheet/sheet-class.js
Expand Up @@ -178,6 +178,8 @@ class Sheet extends Modal {
) {
return;
}
if ($(e.target).closest('.sortable-handler').length > 0) return;

isTouched = true;
isMoved = false;
startTouch = {
Expand Down

0 comments on commit c92ad63

Please sign in to comment.