@leogps/file-uploader 2.0.1 → 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -33,7 +33,7 @@
33
33
  <form id="uploadForm" action="/upload" enctype="multipart/form-data" method="post">
34
34
  <div id="file-div" class="field file has-name is-boxed column is-flex-grow-1">
35
35
  <label class="file-label">
36
- <input class="file-input" type="file" name="multipleFiles" multiple="multiple">
36
+ <input class="file-input" type="file" name="file" multiple="multiple">
37
37
  <span class="file-cta">
38
38
  <span class="file-icon">
39
39
  <i class="fas fa-upload"></i>
@@ -46,6 +46,15 @@
46
46
  <div id="file-name" class="mt-1 wrap-text is-multiline"></div>
47
47
  </div>
48
48
 
49
+ <div class="field">
50
+ <label class="checkbox">
51
+ <input id="disableChunkedUpload" type="checkbox">
52
+ <span>
53
+ Disable chunked/resumable upload
54
+ </span>
55
+ </label>
56
+ </div>
57
+
49
58
  <div class="control field is-flex-grow-1">
50
59
  <button type="submit" class="button is-link">Submit</button>
51
60
  </div>