ngDraggable
ngDraggable copied to clipboard
Problem with scroll container
In this case:
<ul style="overflow:scroll;">
<li ng-repeat="..." ng-drag="true">
</ul>
When dragging the "LI" elements, they get behind the scroll, when the desired behavior is that they get above all elements.
data-allow-transform="false" will make your item position: fixed; then you can use
z-index` css to solve your problem.