Update backbone-model-file-upload.js
Fix some updates to the "formData" logic
This commit is contained in:
parent
fab16122b4
commit
ec209ecf95
@ -40,8 +40,9 @@
|
||||
this.attributes = _.extend({}, attributes, attrs);
|
||||
}
|
||||
|
||||
// Check for "allowFormData" flag and if file exist and if so, convert to FormData
|
||||
if ( options.allowFormData !== false
|
||||
// Check for "formData" flag and check for if file exist.
|
||||
if ( options.formData === true
|
||||
|| options.formData !== false
|
||||
&& this.attributes[ this.fileAttribute ]
|
||||
&& this.attributes[ this.fileAttribute ] instanceof File ) {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user