From: Paul Bakaus Date: Thu, 26 Jun 2008 10:49:47 +0000 (+0000) Subject: fixed #3010 X-Git-Tag: 1.5.1~15 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7818b8c583e3899797c754a5120854ad1823a36e;p=jquery-ui.git fixed #3010 --- 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);