diff options
-rw-r--r-- | ui/ui.droppable.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/ui.droppable.js b/ui/ui.droppable.js index ae1f8344e..d668a1c0b 100644 --- a/ui/ui.droppable.js +++ b/ui/ui.droppable.js @@ -213,7 +213,7 @@ $.ui.ddmanager = { //Run through all droppables and check their positions based on specific tolerance options $.each($.ui.ddmanager.droppables, function() { - if(this.disabled || this.greedyChild || !this.visible) return; + if(this.options.disabled || this.greedyChild || !this.visible) return; var intersects = $.ui.intersect(draggable, this, this.options.tolerance); var c = !intersects && this.isover == 1 ? 'isout' : (intersects && this.isover == 0 ? 'isover' : null); |