]> source.dussan.org Git - nextcloud-server.git/commitdiff
fixed color calculation again
authorJan-Christoph Borchardt <JanCBorchardt@fsfe.org>
Sat, 30 Jul 2011 13:42:34 +0000 (15:42 +0200)
committerJan-Christoph Borchardt <JanCBorchardt@fsfe.org>
Sat, 30 Jul 2011 13:42:34 +0000 (15:42 +0200)
files/js/filelist.js
files/templates/part.list.php

index 359725cdc0d3de88260e976a2f8d703d91c57e53..3f9b3984465178e89668174dc6280ea84214ec87 100644 (file)
@@ -23,7 +23,7 @@ FileList={
                }else{
                        simpleSize='Pending';
                }
-               sizeColor = Math.round(200-size/1024*1024*2);
+               sizeColor = Math.round(200-size/(1024*1024)*2);
                lastModifiedTime=Math.round(lastModified.getTime() / 1000);
                modifiedColor=Math.round((Math.round((new Date()).getTime() / 1000)-lastModifiedTime)/60/60/24*14);
                html+='<td class="filesize" title="'+humanFileSize(size)+'" style="color:rgb('+sizeColor+','+sizeColor+','+sizeColor+')">'+simpleSize+'</td>';
index 22edd9351cd43290b0c2bf332ce55cc6d9ecb262..93ed70990b76e99aef3598df4140699950cb59d7 100644 (file)
@@ -1,7 +1,7 @@
                <span id="emptyfolder" <?php if(count($_['files'])) echo 'style="display:none;"';?>>Nothing in here. Upload something!</span>
                <?php foreach($_['files'] as $file):
                        $simple_file_size = simple_file_size($file['size']);
-                       $simple_size_color = intval(200-$file['size']/1024*1024*2); // the bigger the file, the darker the shade of grey; megabytes*2
+                       $simple_size_color = intval(200-$file['size']/(1024*1024)*2); // the bigger the file, the darker the shade of grey; megabytes*2
                        if($simple_size_color<0) $simple_size_color = 0;
                        $relative_modified_date = relative_modified_date($file['mtime']);
                        $relative_date_color = round((time()-$file['mtime'])/60/60/24*14); // the older the file, the brighter the shade of grey; days*14