(web) #5214 'add storage free space indicator' -- added with patch by taem

This commit is contained in:
Jordan Lee
2013-02-05 14:45:41 +00:00
parent c0a0240dfd
commit 69aeed3226
6 changed files with 28 additions and 42 deletions

View File

@@ -1147,10 +1147,10 @@ Transmission.prototype =
$('#speed-dn-label').text( fmt.speedBps( d ) );
if (this.freeSpace > 0)
text = fmt.size (this.freeSpace);
text = fmt.size (this.freeSpace) + " Free";
else
text = '';
$('#freespace-info').text( text);
$('#freespace-info').text( text );
// visible torrents
$('#filter-count').text( fmt.countString('Transfer','Transfers',this._rows.length ) );