Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 561 Bytes

File metadata and controls

21 lines (18 loc) · 561 Bytes
title dragdrop.wait
command_type action
syntax .wait()
description Pauses the script's execution until one element is dragged and dropped onto a dropzone.
notes true

@    newDragDrop("dd")
@        .addDrag(getCanvas("dot"))
@        .addDrop(getCanvas("start"),getCanvas("end"))
@        .offset(25) 
@        .single()
@        .log()
$        .wait()
  • Pauses the script's execution until element "dot" is dragged and dropped onto a dropzone.