mirror of
https://github.com/LaQuay/TDTChannels.git
synced 2024-11-26 18:54:57 +01:00
fix change channel with options
This commit is contained in:
parent
63f86be304
commit
dfb7ea4779
1 changed files with 11 additions and 9 deletions
|
@ -178,18 +178,20 @@ function filterChannelsList() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function reproduceChannel(channel_options) {
|
function reproduceChannel(channel_options) {
|
||||||
options = channel_options;
|
|
||||||
|
|
||||||
document.getElementById("option-buttons").innerHTML = ""
|
document.getElementById("option-buttons").innerHTML = ""
|
||||||
if (options.length == 1) {
|
if (channel_options.length > 0) {
|
||||||
reproduceVideo(channel['options'][0]['url'])
|
reproduceVideo(channel_options[0]['url'])
|
||||||
} else if (options.length > 1) {
|
|
||||||
for (i = 0; i < options.length; ++i) {
|
if (channel_options.length > 1) {
|
||||||
var url = options[i]['url'];
|
for (i = 0; i < channel_options.length; ++i) {
|
||||||
|
var url = channel_options[i]['url'];
|
||||||
document.getElementById("option-buttons").innerHTML +=
|
document.getElementById("option-buttons").innerHTML +=
|
||||||
"<a href='javascript:reproduceVideo(\"" + url + "\")' class='btn btn-secondary btn-sm' style='margin-right: 10px'>Opción " + (i+1) + "</a>";
|
"<a href='javascript:reproduceVideo(\"" + url + "\")' class='btn btn-secondary btn-sm' style='margin-right: 10px'>Opción " + (i+1) + "</a>";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
reproduceVideo("no_video_found.m3u8")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function onChannelClick(channel) {
|
function onChannelClick(channel) {
|
||||||
|
|
Loading…
Reference in a new issue