From a51d4ae74b2b8062dac483ca7773779aea96e0a7 Mon Sep 17 00:00:00 2001 From: Mattias Reichel Date: Thu, 1 Oct 2020 09:38:36 +0200 Subject: [PATCH] Update Events.vue Corrected documentation for the parameters to event listeners for event vdropzone-removed-file. --- docs/src/pages/Events.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/pages/Events.vue b/docs/src/pages/Events.vue index 146f1b1..91b5b2d 100755 --- a/docs/src/pages/Events.vue +++ b/docs/src/pages/Events.vue @@ -25,7 +25,7 @@ export default { ['vdropzone-canceled(file)', 'Called when a file upload gets canceled.'], ['vdropzone-error(file, message, xhr)', 'An error occured. Receives the error `message` as second parameter and if the error was due to the XMLHttpRequest the xhr object as third.'], ['vdropzone-error-multiple(files, message, xhr)', 'See `vdropzone-error` for description.'], - ['vdropzone-removed-file(file, error, xhr)', 'A file was removed from the dropzone.'], + ['vdropzone-removed-file(file)', 'A file was removed from the dropzone.'], ['vdropzone-sending(file, xhr, formData)', 'Modify the request and add addtional parameters to request before sending.'], ['vdropzone-complete-multiple(response)', 'Called when all files are uploaded.'], ['vdropzone-canceled(file)', 'Called when a file upload gets canceled.'],