File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -225,12 +225,15 @@ function handleRootPointerdown() {
225225}
226226
227227function handleRootPointerup ( ) {
228+ console . log ( "handleRootPointerup" ) ;
228229 if ( state . pointerDown ) state . pointerDown . node . el . draggable = true ;
229230
230231 state . pointerDown = undefined ;
231232
232233 if ( ! isSynthDragState ( state ) ) return ;
233234
235+ console . log ( "handleRootPointerup after isSynthDragState" , state ) ;
236+
234237 const config = state . currentParent . data . config ;
235238
236239 if ( isSynthDragState ( state ) ) config . handleEnd ( state ) ;
@@ -1952,6 +1955,7 @@ function initSynthDrag<T>(
19521955 draggedNodes : Array < NodeRecord < T > > ,
19531956 rect : DOMRect
19541957) : SynthDragState < T > {
1958+ console . log ( "initSynthDrag" ) ;
19551959 const config = parent . data . config ;
19561960
19571961 let dragImage : HTMLElement ;
You can’t perform that action at this time.
0 commit comments