Home
last modified time | relevance | path

Searched refs:startDragNode (Results 1 – 1 of 1) sorted by relevance

/developtools/smartperf_host/ide/src/trace/component/trace/base/
DTraceRow.ts1020 let startDragNode = collectList.findIndex((it) => it === rowDragElement); variable
1022 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));