quasar-ui-danx 0.3.36 → 0.3.37
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.
- package/dist/danx.es.js +3 -3
- package/dist/danx.es.js.map +1 -1
- package/dist/danx.umd.js +2 -2
- package/dist/danx.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/helpers/FileUpload.ts +3 -1
package/package.json
CHANGED
@@ -268,7 +268,7 @@ export class FileUpload {
|
|
268
268
|
* Start uploading all files
|
269
269
|
*/
|
270
270
|
async upload() {
|
271
|
-
console.log && console.log("FileUploader@upload()", this.fileUploads, this.options);
|
271
|
+
console.log && console.log("FileUploader@upload():", this.fileUploads, this.options);
|
272
272
|
for (const fileUpload of this.fileUploads) {
|
273
273
|
const mimeType = fileUpload.file.mimeType || fileUpload.file.type;
|
274
274
|
const presignedUrl = this.options.presignedUploadUrl(this.options.directory, fileUpload.file.name, mimeType);
|
@@ -305,6 +305,8 @@ export class FileUpload {
|
|
305
305
|
// Set all the callbacks on the XHR requests
|
306
306
|
this.setXhrCallbacks();
|
307
307
|
|
308
|
+
console.log && console.log("FileUploader@upload():", "sending uploads");
|
309
|
+
|
308
310
|
// Send all the XHR file uploads
|
309
311
|
for (const fileUpload of this.fileUploads) {
|
310
312
|
fileUpload.xhr.send(fileUpload.body);
|