Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move xhr.send to a separate overridable method
This commit makes it possible to send files as body instead of form data, and make other overrides to both xhr and formData before the request is submitted. For example: ``` Dropzone.prototype.submitRequest = function(xhr, formData, files) { xhr.send(files[0]); } ```
- Loading branch information