LPology / Simple-Ajax-Uploader

Javascript file upload plugin with progress bar support. Works in all major browsers, including IE7+, Chrome, Firefox, Safari, and Opera. No dependencies - use it with or without jQuery.
995 stars 267 forks source link

pass fileObj argument to onSubmit/onProgress etc. #170

Open suhaotian opened 8 years ago

suhaotian commented 8 years ago

It's helpful to wrap Simple-Ajax-Uploader to reactjs component. Before:

...
onComplete: function( filename, response, uploadBtn, size ) {

},
...

After:

 ...
onComplete: function( response, fileObj ) {
 // fileObj.uploadBtn, fileObj.size
}, 
...