mirror of
https://github.com/transmission/transmission.git
synced 2025-12-24 12:28:52 +00:00
(web) #5214 'add storage free space indicator' -- added with patch by taem
This commit is contained in:
@@ -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 ) );
|
||||
|
||||
Reference in New Issue
Block a user