From f20ce8cd8d287db957620f42bc65e3ba290dc3f9 Mon Sep 17 00:00:00 2001 From: liuboaibc Date: Wed, 2 Jun 2021 19:28:28 +0800 Subject: [PATCH] update live page Signed-off-by: liuboaibc --- layouts/live/list.html | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/layouts/live/list.html b/layouts/live/list.html index 442afbac4..6f6046822 100644 --- a/layouts/live/list.html +++ b/layouts/live/list.html @@ -143,12 +143,13 @@ var bindClickVideoLi = function() { $('.video-ul').on('click', 'li', function(ev) { var link = $(this).data('link') - var type = $(this).data('type') - if (type === 'video') { - showVideo(link) - } else if (type === 'iframe') { - showIframe(link) - } + window.open(link) + // var type = $(this).data('type') + // if (type === 'video') { + // showVideo(link) + // } else if (type === 'iframe') { + // showIframe(link) + // } }) }