You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
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); (...)
The text was updated successfully, but these errors were encountered: