diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-08-05 13:20:03 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-08-05 13:20:03 +0200 |
commit | bed0a5773fe2300979969b46ef633f28ab84bf43 (patch) | |
tree | 08052e59515bfdd70dac6693da3dc78debd7fe77 /view/js/mod_cloud.js | |
parent | 53a2262fef2c1e6208a301a15c0e0c9a024b2b42 (diff) | |
download | volse-hubzilla-bed0a5773fe2300979969b46ef633f28ab84bf43.tar.gz volse-hubzilla-bed0a5773fe2300979969b46ef633f28ab84bf43.tar.bz2 volse-hubzilla-bed0a5773fe2300979969b46ef633f28ab84bf43.zip |
multi acl: port /rpost
Diffstat (limited to 'view/js/mod_cloud.js')
-rw-r--r-- | view/js/mod_cloud.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/view/js/mod_cloud.js b/view/js/mod_cloud.js index e56ec2a81..5b3c78bed 100644 --- a/view/js/mod_cloud.js +++ b/view/js/mod_cloud.js @@ -100,13 +100,13 @@ function prepareHtml(f, i) { } function formatSizeUnits(bytes){ - if (bytes>=1000000000) {bytes=(bytes/1000000000).toFixed(2)+' GB';} - else if (bytes>=1000000) {bytes=(bytes/1000000).toFixed(2)+' MB';} - else if (bytes>=1000) {bytes=(bytes/1000).toFixed(2)+' KB';} - else if (bytes>1) {bytes=bytes+' bytes';} - else if (bytes==1) {bytes=bytes+' byte';} - else {bytes='0 byte';} - return bytes; + if (bytes>=1000000000) {bytes=(bytes/1000000000).toFixed(2)+' GB';} + else if (bytes>=1000000) {bytes=(bytes/1000000).toFixed(2)+' MB';} + else if (bytes>=1000) {bytes=(bytes/1000).toFixed(2)+' KB';} + else if (bytes>1) {bytes=bytes+' bytes';} + else if (bytes==1) {bytes=bytes+' byte';} + else {bytes='0 byte';} + return bytes; } // this is basically a js port of include/text.php getIconFromType() function |