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 e42b0f6 commit 7818b8cCopy full SHA for 7818b8c
ui/ui.droppable.js
@@ -213,7 +213,7 @@ $.ui.ddmanager = {
213
//Run through all droppables and check their positions based on specific tolerance options
214
$.each($.ui.ddmanager.droppables, function() {
215
216
- if(this.disabled || this.greedyChild || !this.visible) return;
+ if(this.options.disabled || this.greedyChild || !this.visible) return;
217
var intersects = $.ui.intersect(draggable, this, this.options.tolerance);
218
219
var c = !intersects && this.isover == 1 ? 'isout' : (intersects && this.isover == 0 ? 'isover' : null);
0 commit comments