mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-23 13:54:27 -04:00
fixed typo causing FT to show blank for transfer completion in webUI
This commit is contained in:
parent
e9da9a555d
commit
07f63c82e2
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ function progressBar(file){
|
||||||
m("div[style="
|
m("div[style="
|
||||||
+ 'background-color:lime;'
|
+ 'background-color:lime;'
|
||||||
+ 'height:100%;'
|
+ 'height:100%;'
|
||||||
+ 'width:' + (file.transfered / file.size * 100)+'%'
|
+ 'width:' + (file.transferred / file.size * 100)+'%'
|
||||||
+ ']'
|
+ ']'
|
||||||
,"")
|
,"")
|
||||||
]);
|
]);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue