Is there a built-in dragdrop solution for AngularJS that can handle drag and drop between nested ng repeats?
What the current html looks like:
<section ng-repeat="list in lists">
{{ list.name }}
<article ng-repeat="user in list.users">
{{ user.name }}
</article>
</section>
I am trying to ensure that I can move users to other lists.
I do not want to add jQuery UI as a dependency for just drag and drop.
source
share