Web UI: Display wasted data with friendly units. Closes #2994

This commit is contained in:
ngosang
2015-05-14 13:35:48 +02:00
committed by sledgehammer999
parent a94b317150
commit bded737c3c

View File

@@ -58,7 +58,7 @@ var loadTorrentData = function() {
$('total_downloaded').set('html', friendlyUnit(data.total_downloaded) +
" (" + friendlyUnit(data.total_downloaded_session) +
" QBT_TR(this session)QBT_TR" + ")");
$('total_wasted').set('html', data.total_wasted);
$('total_wasted').set('html', friendlyUnit(data.total_wasted));
temp = data.up_limit;
$('up_limit').set('html', temp == -1 ? "∞" : temp);
temp = data.dl_limit;