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 593235d commit e294ab9Copy full SHA for e294ab9
src/Sortable.js
@@ -235,7 +235,7 @@ let dragEl,
235
insideHorizontally = x >= (rect.left - threshold) && x <= (rect.right + threshold),
236
insideVertically = y >= (rect.top - threshold) && y <= (rect.bottom + threshold);
237
238
- if (threshold && insideHorizontally && insideVertically) {
+ if (insideHorizontally && insideVertically) {
239
return (ret = sortable);
240
}
241
});
0 commit comments