With the flow.js component we can assign a browse button like this:
flow.assignBrowse(document.getElementById('browseButton'));
We can assign a drop area like this:
flow.assignDrop(document.getElementById('dropTarget'));
We can also unassign a drop area like this:
flow.unAssignDrop(document.getElementById('dropTarget'));
My first question is how to unassign a browse button ?
My second question is how to know (natively) if a browse button is already defined ?
I can't see any info on that in the documentation.
Thanks.