Skip to content

Commit

Permalink
fix(popup): prevent swiping popup 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 b9afba6 commit 9673b0b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/core/components/popup/popup-class.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ class Popup extends Modal {
) {
return;
}
if ($(e.target).closest('.sortable-handler').length > 0) return;
isTouched = true;
isMoved = false;
startTouch = {
Expand Down

0 comments on commit 9673b0b

Please sign in to comment.