(trunk web) #4438 "Add tooltip for peer status in web interface" -- patch by niol

This commit is contained in:
Jordan Lee
2011-08-24 18:42:10 +00:00
parent 296a2064f7
commit 2da83079f9
2 changed files with 33 additions and 2 deletions

View File

@@ -1361,7 +1361,7 @@ Transmission.prototype =
'<td>', (peer.rateToPeer ? fmt.speedBps(peer.rateToPeer) : ''), '</td>',
'<td>', (peer.rateToClient ? fmt.speedBps(peer.rateToClient) : ''), '</td>',
'<td class="percentCol">', Math.floor(peer.progress*100), '%', '</td>',
'<td>', peer.flagStr, '</td>',
'<td>', fmt.peerStatus(peer.flagStr), '</td>',
'<td>', peer.address, '</td>',
'<td class="clientCol">', peer.clientName, '</td>',
'</tr>');