webui: Added back the play link (no integrated player)

This commit is contained in:
Jaroslav Kysela 2014-06-17 16:19:28 +02:00
parent 6ff88bc419
commit b362edb3a4

View file

@ -58,6 +58,10 @@ tvheadend.epgDetails = function(event) {
content += '<div class="x-epg-meta"><a target="_blank" href="http://akas.imdb.com/find?q=' + event.title + '">Search IMDB</a></div>';
content += '<div id="related"></div>';
content += '<div id="altbcast"></div>';
now = new Date();
if (event.start < now && event.end > now)
content += '<div class="x-epg-meta"><a href="stream/channelid/' + event.channelid + '">Play</a></div>';
var confcombo = new Ext.form.ComboBox({
store: tvheadend.configNames,