For nested droppables, make children greedy to consume the action

This commit is contained in:
Nathan Gray 2013-05-28 22:09:03 +00:00
parent 4995e1fa08
commit 51161e8ddd

View File

@ -374,7 +374,9 @@ function egwDropActionImplementation()
},
"tolerance": "pointer",
activeClass: "ui-state-hover",
hoverClass: "ui-state-active"
hoverClass: "ui-state-active",
// Greedy is for nested droppables - children consume the action
greedy: true,
}
);