aboutsummaryrefslogtreecommitdiffstats
path: root/ui/ui.droppable.js
diff options
context:
space:
mode:
authorPaul Bakaus <paul.bakaus@googlemail.com>2008-06-26 10:49:47 +0000
committerPaul Bakaus <paul.bakaus@googlemail.com>2008-06-26 10:49:47 +0000
commit7818b8c583e3899797c754a5120854ad1823a36e (patch)
treec197d018bdf41c8a116c06b9c64b9860f718d7a0 /ui/ui.droppable.js
parente42b0f6b8bf910885b7b84037b312c5c93b47a26 (diff)
downloadjquery-ui-7818b8c583e3899797c754a5120854ad1823a36e.tar.gz
jquery-ui-7818b8c583e3899797c754a5120854ad1823a36e.zip
fixed #3010
Diffstat (limited to 'ui/ui.droppable.js')
-rw-r--r--ui/ui.droppable.js2
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);