diff options
-rw-r--r-- | ui/ui.draggable.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/ui.draggable.js b/ui/ui.draggable.js index 5d27c0797..551550ed4 100644 --- a/ui/ui.draggable.js +++ b/ui/ui.draggable.js @@ -606,7 +606,7 @@ $.ui.plugin.add("draggable", "connectToSortable", { var itemHeight = o.height, itemWidth = o.width; var itemTop = o.top, itemLeft = o.left; - return $.ui.intersect(helperTop + dyClick, helperLeft + dxClick, itemTop, itemLeft, itemHeight, itemWidth); + return $.ui.intersects(helperTop + dyClick, helperLeft + dxClick, itemTop, itemLeft, itemHeight, itemWidth); }; $.each(inst.sortables, function(i) { |