Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Small styles fix DVR info to looks better
  • Loading branch information
pepsonEL authored and perexg committed Mar 11, 2016
1 parent bc345c7 commit d801830
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/webui/static/app/dvr.js
Expand Up @@ -35,7 +35,7 @@ tvheadend.dvrDetails = function(uuid) {
if (title)
content += '<div class="x-epg-title">' + title + '</div>';
if (subtitle)
content += '<div class="x-epg-title">' + subtitle + '</div>';
content += '<div class="x-epg-title">' + subtitle + '</div>';
if (episode)
content += '<div class="x-epg-title">' + episode + '</div>';
if (start_real)
Expand All @@ -44,9 +44,11 @@ tvheadend.dvrDetails = function(uuid) {
content += '<div class="x-epg-time"><div class="x-epg-prefix">' + _('Scheduled Stop Time') + ':</div> ' + tvheadend.niceDate(stop_real * 1000) + '</div>';
if (duration)
content += '<div class="x-epg-time"><div class="x-epg-prefix">' + _('Duration') + ':</div> ' + parseInt(duration / 60) + ' ' + _('min') + '</div>';
if (desc)
content += '<div class="x-epg-desc">' + desc + '</div>';
content += '<hr>';
if (desc) {
content += '<div class="x-epg-desc">' + desc + '</div>';
content += '<hr>';
}
if (status)
content += '<div class="x-epg-meta"><div class="x-epg-prefix">' + _('Status') + ':</div> ' + status + '</div>';
if (filesize)
Expand Down

0 comments on commit d801830

Please sign in to comment.