[Containment] Remove condition around drop event

Remove condition (now obsolete) which checked for mutation
after drop, for changes for WTD-962.
This commit is contained in:
Victor Woeltjen 2015-04-07 21:06:23 -07:00
parent 9e4611bcfd
commit 7cabead3bc

View File

@ -78,10 +78,7 @@ define(
// the change.
if (id) {
$q.when(action && action.perform()).then(function (result) {
// Broadcast the drop event if it was successful
if (result) {
broadcastDrop(id, event);
}
broadcastDrop(id, event);
});
}