Cleaner look for the torrent file list

This commit is contained in:
DC
2016-05-21 06:18:44 -07:00
parent ca7c872420
commit 6e969e5d07
2 changed files with 7 additions and 6 deletions

View File

@@ -190,7 +190,6 @@ function TorrentList (state) {
(file, index) => renderFileRow(torrentSummary, file, index))
filesElement = hx`
<div class='files'>
<strong>Files</strong>
<table>
${fileRows}
</table>
@@ -223,7 +222,7 @@ function TorrentList (state) {
var icon
var handleClick
if (isPlayable) {
icon = 'play_arrow' /* playable? add option to play */
icon = 'play_circle_outline' /* playable? add option to play */
handleClick = dispatcher('play', infoHash, index)
} else {
icon = 'description' /* file icon, opens in OS default app */