Closed
Description
First check https://github.com/SortableJS/Vue.Draggable/blob/master/CONTRIBUTING.md
In function onDragRemove in vuedraggable.js, the first line points to the variable this.$el, which is a node of type text. The function insertNodeAt expects an element with an attribute of children.
(line 250) onDragRemove: function onDragRemove(evt) { insertNodeAt(this.$el, evt.item, evt.oldIndex); (...)
The next function in the file has already been corrected:
(line 262) onDragUpdate: function onDragUpdate(evt) { removeNode(evt.item); insertNodeAt(evt.from, evt.item, evt.oldIndex); (...)
Metadata
Metadata
Assignees
Labels
No labels