webui: expose a "play" url to the entire mux.

This commit is contained in:
John Törnblom 2013-01-09 16:45:14 +01:00
parent f69022390f
commit a1749a27c9

View file

@ -24,6 +24,14 @@ tvheadend.dvb_muxes = function(adapterData, satConfStore) {
var cmlist = Array();
cmlist.push(enabledColumn, {
header : "Play",
dataIndex : 'id',
width : 50,
renderer : function(value, metadata, record, row, col, store) {
url = 'stream/mux/' + value
return '<a href="' + url + '">Play</a>'
}
}, {
header : "Network",
dataIndex : 'network',
width : 200