fires when a file is dragged to another potential target in the queue
| data | object | data object |
| e | Event | a native event object |
vault.events.on("DragIn", function(data, events){
// your logic here
});
The data object can contain the following parameters:
| start | (string) the id of a file, from which the dragging process has started |
| source | (string[]) an array with ids of dragged files |
| target | (string) the id of a potential target file |
added in v4.0
Back to top