fixed typo causing FT to show blank for transfer completion in webUI

This commit is contained in:
csoler 2018-11-07 21:45:44 +01:00
parent e9da9a555d
commit 07f63c82e2
No known key found for this signature in database
GPG Key ID: 7BCA522266C0804C

View File

@ -23,7 +23,7 @@ function progressBar(file){
m("div[style="
+ 'background-color:lime;'
+ 'height:100%;'
+ 'width:' + (file.transfered / file.size * 100)+'%'
+ 'width:' + (file.transferred / file.size * 100)+'%'
+ ']'
,"")
]);