diff options
author | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-06-26 10:49:47 +0000 |
---|---|---|
committer | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-06-26 10:49:47 +0000 |
commit | 7818b8c583e3899797c754a5120854ad1823a36e (patch) | |
tree | c197d018bdf41c8a116c06b9c64b9860f718d7a0 /ui/ui.droppable.js | |
parent | e42b0f6b8bf910885b7b84037b312c5c93b47a26 (diff) | |
download | jquery-ui-7818b8c583e3899797c754a5120854ad1823a36e.tar.gz jquery-ui-7818b8c583e3899797c754a5120854ad1823a36e.zip |
fixed #3010
Diffstat (limited to 'ui/ui.droppable.js')
-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); |