Here is an example of a div with Angular directives:
<div ng-drop="$ctrl.activateDropArea" ng-drop-success="$ctrl.onDropComplete($data,$event)">
However, I am facing the issue where the onDropComplete function gets called even when I click on the draggable element within the div. Is there a way to prevent onDropComplete from being triggered on click or differentiate between an actual drop event and just a click?