marceljuenemann / angular-drag-and-drop-lists

Angular directives for sorting nested lists using the HTML5 Drag & Drop API
MIT License
2.16k stars 713 forks source link

dnd-moved not fired in combination with dnd-drop #433

Closed dennislaupman closed 6 years ago

dennislaupman commented 6 years ago

Is this problem still alive?

I have 2 similar lists:

  <div 
        dnd-list="ctrl.playlist" 
        dnd-drop="ctrl.drop(index, item, external, type)"
    >
        <div 
            dnd-draggable="block" 
            dnd-moved="ctrl.playlist.splice($index, 1)"
            dnd-effect-allowed="move"
            ng-repeat="block in ctrl.playlist" 
        ></div>
    </div>