I am currently utilizing ng-flow for drag and drop file functionality, allowing users to upload files to the server. Within the page I am developing, there are multiple drop listeners present. Is there a method to determine which specific element the drop event took place on?
<body ng-app="droptest" flow-init="{target:''}">
<div name="drop1" class="fa fa-paperclip fa-rotate-90 Cell small" flow-drop="" title="Drag and drop files to upload to this record"></div>
<div name="drop2" class="fa fa-paperclip fa-rotate-90 Cell small" flow-drop="" title="Drag and drop files to upload to this record"></div>
</body>
$scope.$on('flow::fileAdded', function (event, $flow, flowFile) {
// How can we identify whether the drop occured on drop1 or drop2?
});