From: Piotr Kuchciak Date: Wed, 19 Nov 2014 12:53:18 +0000 (+0100) Subject: WEBUI EPG: small fix name X-Git-Tag: v4.1~727 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a0a26513ff6c1b4cdc597d0bf944e04dccd95c3e;p=thirdparty%2Ftvheadend.git WEBUI EPG: small fix name --- diff --git a/src/webui/static/app/epg.js b/src/webui/static/app/epg.js index ace3a96f9..36a36318f 100644 --- a/src/webui/static/app/epg.js +++ b/src/webui/static/app/epg.js @@ -106,7 +106,7 @@ tvheadend.epgDetails = function(event) { if (event.start) content += '
Start Time:
' + tvheadend.niceDate(event.start) + '
'; if (event.stop) - content += '
Stop Time:
' + tvheadend.niceDate(event.stop) + '
'; + content += '
End Time:
' + tvheadend.niceDate(event.stop) + '
'; if (duration) content += '
Duration:
' + parseInt(duration / 60) + ' min
'; if (event.summary)