webui: expose a "play" url to the entire mux.
This commit is contained in:
parent
f69022390f
commit
a1749a27c9
1 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue