mirror of
https://github.com/ZizzyDizzyMC/linx-server.git
synced 2026-07-17 16:36:51 +00:00
Merge pull request #109 from culdev/master
Fix file upload for Internet Explorer
This commit is contained in:
commit
0e768cc6f4
1 changed files with 1 additions and 1 deletions
|
|
@ -43,7 +43,7 @@ Dropzone.options.dropzone = {
|
|||
},
|
||||
sending: function(file, xhr, formData) {
|
||||
formData.append("randomize", document.getElementById("randomize").checked);
|
||||
formData.append("expires", document.getElementById("expires").selectedOptions[0].value);
|
||||
formData.append("expires", document.getElementById("expires").value);
|
||||
},
|
||||
success: function(file, resp) {
|
||||
file.fileActions.removeChild(file.progressElement);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue