We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a07984 commit d4f3b5bCopy full SHA for d4f3b5b
js/jquery.fileupload.js
@@ -1,5 +1,5 @@
1
/*
2
- * jQuery File Upload Plugin 5.28.2
+ * jQuery File Upload Plugin 5.28.3
3
* https://github.com/blueimp/jQuery-File-Upload
4
*
5
* Copyright 2010, Sebastian Tschan
@@ -243,7 +243,7 @@
243
if ($.isArray(options.formData)) {
244
return options.formData;
245
}
246
- if (options.formData) {
+ if ($.type(options.formData) === 'object') {
247
formData = [];
248
$.each(options.formData, function (name, value) {
249
formData.push({name: name, value: value});
0 commit comments