From 0001d804a9c434abc2a5a8aa6a9902b743e24545 Mon Sep 17 00:00:00 2001 From: Sai Raj <39055732+sairajzero@users.noreply.github.com> Date: Thu, 8 Aug 2019 16:59:43 +0530 Subject: [PATCH] bug fix : chrome UI progress bar not showing --- FLO_torrentUploader.html | 1 + 1 file changed, 1 insertion(+) diff --git a/FLO_torrentUploader.html b/FLO_torrentUploader.html index 2e86a47..7432193 100644 --- a/FLO_torrentUploader.html +++ b/FLO_torrentUploader.html @@ -393,6 +393,7 @@ function sendDataToBlockchain(floID,name,filename,type,description,tags,filesize overlaytext.innerHTML = `Uploading chunks to blockchain...
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}});