aboutsummaryrefslogtreecommitdiffstats
path: root/ui/source/ui.droppable.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/source/ui.droppable.js')
-rw-r--r--ui/source/ui.droppable.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/source/ui.droppable.js b/ui/source/ui.droppable.js
index 7dcd86b28..546eda7ff 100644
--- a/ui/source/ui.droppable.js
+++ b/ui/source/ui.droppable.js
@@ -96,7 +96,7 @@
if (!draggable || (draggable.currentItem || draggable.element)[0] == this.element[0]) return false; // Bail if draggable and droppable are same element
var childrenIntersection = false;
- this.element.find(".ui-droppable").each(function() {
+ this.element.find(".ui-droppable").not(".ui-draggable-dragging").each(function() {
var inst = $.data(this, 'droppable');
if(inst.options.greedy && $.ui.intersect(draggable, $.extend(inst, { offset: inst.element.offset() }), inst.options.tolerance)) {
childrenIntersection = true; return false;