Browse Source

Use value instead of selectedOptions.

pull/109/head
culdev 8 years ago
parent
commit
8f384dc5ce
  1. 2
      static/js/upload.js

2
static/js/upload.js

@ -43,7 +43,7 @@ Dropzone.options.dropzone = {
}, },
sending: function(file, xhr, formData) { sending: function(file, xhr, formData) {
formData.append("randomize", document.getElementById("randomize").checked); 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) { success: function(file, resp) {
file.fileActions.removeChild(file.progressElement); file.fileActions.removeChild(file.progressElement);

Loading…
Cancel
Save