From: pepeEL Date: Mon, 7 Mar 2016 18:30:09 +0000 (+0100) Subject: Small styles fix EPG detailes to looks better X-Git-Tag: v4.2.1~878 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d4337a8fcd62289559dda61f643e9210b4b3e659;p=thirdparty%2Ftvheadend.git Small styles fix EPG detailes to looks better --- diff --git a/src/webui/static/app/dvr.js b/src/webui/static/app/dvr.js index 8cf5677c0..c532f6f14 100644 --- a/src/webui/static/app/dvr.js +++ b/src/webui/static/app/dvr.js @@ -44,10 +44,10 @@ tvheadend.dvrDetails = function(uuid) { content += '
' + _('Scheduled Stop Time') + ':
' + tvheadend.niceDate(stop_real * 1000) + '
'; if (duration) content += '
' + _('Duration') + ':
' + parseInt(duration / 60) + ' ' + _('min') + '
'; - content += '
'; + content += '
'; if (desc) { content += '
' + desc + '
'; - content += '
'; + content += '
'; } if (status) content += '
' + _('Status') + ':
' + status + '
'; diff --git a/src/webui/static/app/epg.js b/src/webui/static/app/epg.js index 9444614f5..967fde44b 100644 --- a/src/webui/static/app/epg.js +++ b/src/webui/static/app/epg.js @@ -109,11 +109,12 @@ tvheadend.epgDetails = function(event) { content += '
' + _('End Time') + ':
' + tvheadend.niceDate(event.stop) + '
'; if (duration) content += '
' + _('Duration') + ':
' + parseInt(duration / 60) + ' min
'; + content += '
'; if (event.summary) content += '
' + event.summary + '
'; if (event.description) content += '
' + event.description + '
'; - if (event.starRating || event.ageRating || event.genre) + if (event.summary || event.description) content += '
'; if (event.starRating) content += '
' + _('Star Rating') + ':
' + event.starRating + '
';