chunkupload: typo: uplaod -> upload

This commit is contained in:
Will Thompson 2016-06-28 15:59:16 +01:00
parent 5aeffcfb6a
commit 92a4e77f9b
No known key found for this signature in database
GPG key ID: 3422DC0D7AD482A7

View file

@ -89,7 +89,7 @@ pandora.chunkupload = function(options) {
} }
}, false); }, false);
request.addEventListener('error', function (evt) { request.addEventListener('error', function (evt) {
that.status = 'uplaod failed'; that.status = 'upload failed';
that.progress = -1; that.progress = -1;
that.responseText = evt.target.responseText; that.responseText = evt.target.responseText;
done(); done();
@ -100,7 +100,7 @@ pandora.chunkupload = function(options) {
done(); done();
}, false); }, false);
var formData = new FormData(); var formData = new FormData();
Object.keys(options.data).forEach(function(key) { Object.keys(options.data).forEach(function(key) {
formData.append(key, options.data[key]); formData.append(key, options.data[key]);
}); });
@ -176,7 +176,7 @@ pandora.chunkupload = function(options) {
// failed to upload, try again in 5 second // failed to upload, try again in 5 second
retries++; retries++;
if (maxRetry > 0 && retries > maxRetry) { if (maxRetry > 0 && retries > maxRetry) {
that.status = 'uplaod failed'; that.status = 'upload failed';
that.progress = -1; that.progress = -1;
done(); done();
} else { } else {
@ -195,7 +195,7 @@ pandora.chunkupload = function(options) {
// failed to upload, try again in 3 second // failed to upload, try again in 3 second
retries++; retries++;
if (maxRetry > 0 && retries > maxRetry) { if (maxRetry > 0 && retries > maxRetry) {
that.status = 'uplaod failed'; that.status = 'upload failed';
that.progress = -1; that.progress = -1;
done(); done();
} else { } else {