Skip to content

Commit

Permalink
#2314 #2284 이슈에서 수정했던 jquery.fileupload 플러그인의 Safari 호환성 문제 해결 코드로 인해…
Browse files Browse the repository at this point in the history
… d&d 파일 업로드가 실패하는 문제 수정

- blueimp/jQuery-File-Upload#3512
  • Loading branch information
bnu committed Oct 12, 2018
1 parent 50dc3a8 commit d8ec6a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/js/plugins/jquery.fileupload/js/jquery.fileupload.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
);
});
},
Expand Down

0 comments on commit d8ec6a8

Please sign in to comment.