#2314 #2284 이슈에서 수정했던 jquery.fileupload 플러그인의 Safari 호환성 문제 해결 코드로 인해 d&d 파일 업로드가 실패하는 문제 수정

- https://github.com/blueimp/jQuery-File-Upload/pull/3512
This commit is contained in:
bnu 2018-10-12 13:43:58 +09:00 committed by Kijin Sung
parent 9a82af7366
commit 866a33fd39

View file

@ -1144,10 +1144,10 @@
$.map(entries, function (entry) {
return that._handleFileTreeEntry(entry, path);
})
).then(function (entries) {
).then(function () {
return Array.prototype.concat.apply(
[],
entries
arguments
);
});
},