Skip to content

Commit

Permalink
Close #139 - Corrent individual up and download speeds.
Browse files Browse the repository at this point in the history
  • Loading branch information
styxit committed Feb 23, 2014
1 parent 4161bf6 commit d6b36a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions interfaces/default/js/utorrent.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ function getTorrents() {

tr.append(
$('<td>').html(torrent.name
+ '<br><small><i class="icon-long-arrow-down"></i> ' + getReadableFileSizeString(torrent.up_speed)
+ '/s <i class="icon-long-arrow-up"></i> ' + getReadableFileSizeString(torrent.dl_speed) + '/s</small>'
+ '<br><small><i class="icon-long-arrow-down"></i> ' + getReadableFileSizeString(torrent.dl_speed)
+ '/s <i class="icon-long-arrow-up"></i> ' + getReadableFileSizeString(torrent.up_speed) + '/s</small>'
),
$('<td>').text(ratio),
$('<td>').text(getReadableTime(torrent.eta)),
Expand Down

0 comments on commit d6b36a6

Please sign in to comment.