Implement torrent peers table in WebUI

This commit is contained in:
buinsky
2015-11-13 15:02:38 +03:00
parent 00c765be1b
commit 05a2e5a92e
4 changed files with 222 additions and 2 deletions

View File

@@ -65,6 +65,13 @@
<div id="prop_peers" class="invisible">
<div id="peers">
<table class="torrentTable" cellpadding="0" cellspacing="0" style="width: 100%">
<thead>
<tr id="torrentPeersTableHeader">
</tr>
</thead>
<tbody id="torrentPeersTable"></tbody>
</table>
</div>
</div>
@@ -97,3 +104,7 @@
</table>
</div>
</div>
<script type="text/javascript">
torrentPeersTable.setup('torrentPeersTable', 'torrentPeersTableHeader', null);
</script>