diff options
author | 2013-07-17 13:56:06 +0200 | |
---|---|---|
committer | 2013-07-17 13:56:18 +0200 | |
commit | 4094ef56e050c3d8739ed0646b8eb2d17a7e65f4 (patch) | |
tree | 22cd1a99e99d1095a9730a8f86733e4fffc55f91 /pyload/web/app/templates/default/header/progress.html | |
parent | Using the same string to avoid multiple translations (diff) | |
download | pyload-4094ef56e050c3d8739ed0646b8eb2d17a7e65f4.tar.xz |
improved progressbar rendering
Diffstat (limited to 'pyload/web/app/templates/default/header/progress.html')
-rw-r--r-- | pyload/web/app/templates/default/header/progress.html | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/pyload/web/app/templates/default/header/progress.html b/pyload/web/app/templates/default/header/progress.html index 4ef5a1cd6..740e18a4c 100644 --- a/pyload/web/app/templates/default/header/progress.html +++ b/pyload/web/app/templates/default/header/progress.html @@ -4,11 +4,7 @@ <div class="progress"> <div class="bar" style="width: {{ percent }}%"></div> </div> -{{#if downloading }} -{{ formatSize done }} of {{ formatSize total }} ({{ formatSize download.speed }}/s) -{{ else }} -{{ statusmsg }} -{{/if}} -<span class="pull-right"> - {{ formatTime eta }} -</span>
\ No newline at end of file + +<div class="progress-status"> + <!-- rendered by progressInfo template --> +</div> |