Searched refs:startDragNode (Results 1 – 1 of 1) sorted by relevance
1020 let startDragNode = collectList.findIndex((it) => it === rowDragElement); variable1022 if (startDragNode === -1 || endDragNode === -1) return;1023 if (startDragNode < endDragNode && dragDirection === 'top') {1025 } else if (startDragNode > endDragNode && dragDirection === 'bottom') {1028 collectList.splice(endDragNode, 0, ...collectList.splice(startDragNode, 1));