vue-dropzone
vue-dropzone copied to clipboard
Unable to override "Dropzone.confirm"
Is there a way to do this?
From the Dropzone docs:
If you don’t like the default browser modals for confirm calls, you can handle them yourself by overwriting Dropzone.confirm.
Dropzone.confirm = function(question, accepted, rejected) { // Ask the question, and call accepted() or rejected() accordingly. // CAREFUL: rejected might not be defined. Do nothing in that case. };
At the moment no but this is resolved in #549
Awesome, thanks!