mirror of
https://github.com/jquery/jquery-ui.git
synced 2025-01-07 20:34:24 +00:00
fixed #3010
This commit is contained in:
parent
e42b0f6b8b
commit
7818b8c583
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user