bug fix : chrome UI progress bar not showing

This commit is contained in:
Sai Raj 2019-08-08 16:59:43 +05:30 committed by GitHub
parent 51b4abde9f
commit 0001d804a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -393,6 +393,7 @@ function sendDataToBlockchain(floID,name,filename,type,description,tags,filesize
overlaytext.innerHTML = `Uploading chunks to blockchain...<br/>Uploaded ${j} of ${chunks.length}`;
progressWidth = (j/chunks.length)*100
progress.style.width = progressWidth + '%';
await sleep(10);
}
overlaytext.innerHTML = "Uploading Header..."
var header = JSON.stringify({FLO_Torrent:{name:name,filename:filename,type:type,size:filesize,description:description,tags:tags,chunks:chunks.length,startTx:lastTx}});