We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb97418 commit 23e9175Copy full SHA for 23e9175
5-network/09-resume-upload/article.md
@@ -57,7 +57,7 @@ To resume upload, we need to know *exactly* the number of bytes received by the
57
xhr.setRequestHeader('X-Start-Byte', startByte);
58
59
xhr.upload.onprogress = (e) => {
60
- console.log(`Отправлено ${startByte + e.loaded} из ${startByte + e.total}`);
+ console.log(`Uploaded ${startByte + e.loaded} of ${startByte + e.total}`);
61
};
62
63
// file can be from input.files[0] or another source
0 commit comments