From: pepeEL Date: Mon, 7 Mar 2016 18:28:53 +0000 (+0100) Subject: Small styles fix DVR info to looks better X-Git-Tag: v4.2.1~879 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d801830d795d3d31fa1cbca666199ad91a91fb91;p=thirdparty%2Ftvheadend.git Small styles fix DVR info to looks better --- diff --git a/src/webui/static/app/dvr.js b/src/webui/static/app/dvr.js index 1ad2c975e..8cf5677c0 100644 --- a/src/webui/static/app/dvr.js +++ b/src/webui/static/app/dvr.js @@ -35,7 +35,7 @@ tvheadend.dvrDetails = function(uuid) { if (title) content += '
' + title + '
'; if (subtitle) - content += '
' + subtitle + '
'; + content += '
' + subtitle + '
'; if (episode) content += '
' + episode + '
'; if (start_real) @@ -44,9 +44,11 @@ tvheadend.dvrDetails = function(uuid) { content += '
' + _('Scheduled Stop Time') + ':
' + tvheadend.niceDate(stop_real * 1000) + '
'; if (duration) content += '
' + _('Duration') + ':
' + parseInt(duration / 60) + ' ' + _('min') + '
'; - if (desc) - content += '
' + desc + '
'; content += '
'; + if (desc) { + content += '
' + desc + '
'; + content += '
'; + } if (status) content += '
' + _('Status') + ':
' + status + '
'; if (filesize)