diff options
author | luckydonald <luckydonald@flutterb.at> | 2014-08-10 22:26:03 +0200 |
---|---|---|
committer | luckydonald <luckydonald@flutterb.at> | 2014-08-10 22:26:03 +0200 |
commit | 03a34235e05263fef239af54369f007d8db96257 (patch) | |
tree | 438414b4d101a71aeed27e1ba6f6de2da01188b8 /apps/files/templates | |
parent | c920ca32e8798d609adb4251374844e59d1cb3d8 (diff) | |
download | nextcloud-server-03a34235e05263fef239af54369f007d8db96257.tar.gz nextcloud-server-03a34235e05263fef239af54369f007d8db96257.zip |
Upload progress bar now displays informations about uploades size (12kB of 3MB) and the current speed.
Diffstat (limited to 'apps/files/templates')
-rw-r--r-- | apps/files/templates/list.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/apps/files/templates/list.php b/apps/files/templates/list.php index a0138967cd2..a25172679a2 100644 --- a/apps/files/templates/list.php +++ b/apps/files/templates/list.php @@ -37,9 +37,11 @@ <a href="#" class="svg icon-upload"></a> </div> <div id="uploadprogresswrapper"> - <div id="uploadprogressbar"></div> - <input type="button" class="stop icon-close" - style="display:none" value="" /> + <div id="uploadprogressbar"> + <em class="label outer" style="display:none">Uploading...</em> + </div> + <div style="display:none" class="percents"></div> + <input type="button" class="stop icon-close" style="display:none" value="" /> </div> </div> <div id="file_action_panel"></div> |