Added a play link that will start to play the dvr file in the media player
This commit is contained in:
parent
06c969ab91
commit
fa71c87ec0
1 changed files with 3 additions and 1 deletions
|
@ -46,7 +46,9 @@ tvheadend.dvrDetails = function(entry) {
|
|||
if(entry.url != null && entry.filesize > 0) {
|
||||
content += '<div class="x-epg-meta">' +
|
||||
'<a href="' + entry.url + '" target="_blank">Download</a> '+
|
||||
parseInt(entry.filesize/1000000) + ' MB</div>';
|
||||
parseInt(entry.filesize/1000000) + ' MB<br>' +
|
||||
"<a href=\"javascript:tvheadend.VLC('" + entry.url + "')\">Play</a>" +
|
||||
'</div>';
|
||||
}
|
||||
|
||||
var win = new Ext.Window({
|
||||
|
|
Loading…
Add table
Reference in a new issue