Skip to content

Commit 7818b8c

Browse files
author
Paul Bakaus
committed
fixed #3010
1 parent e42b0f6 commit 7818b8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/ui.droppable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ $.ui.ddmanager = {
213213
//Run through all droppables and check their positions based on specific tolerance options
214214
$.each($.ui.ddmanager.droppables, function() {
215215

216-
if(this.disabled || this.greedyChild || !this.visible) return;
216+
if(this.options.disabled || this.greedyChild || !this.visible) return;
217217
var intersects = $.ui.intersect(draggable, this, this.options.tolerance);
218218

219219
var c = !intersects && this.isover == 1 ? 'isout' : (intersects && this.isover == 0 ? 'isover' : null);

0 commit comments

Comments
 (0)