Skip to content
This repository was archived by the owner on May 25, 2023. It is now read-only.

Commit 483c880

Browse files
authored
Merge pull request #3724 from rtrai/patch-1
Drop support for HTMLInputElement.webkitEntries.
2 parents d98c7fc + b44a9a4 commit 483c880

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

js/jquery.fileupload.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1297,8 +1297,7 @@
12971297
_getSingleFileInputFiles: function (fileInput) {
12981298
// eslint-disable-next-line no-param-reassign
12991299
fileInput = $(fileInput);
1300-
var entries =
1301-
fileInput.prop('webkitEntries') || fileInput.prop('entries'),
1300+
var entries = fileInput.prop('entries'),
13021301
files,
13031302
value;
13041303
if (entries && entries.length) {

0 commit comments

Comments
 (0)