1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

improve m3u channel list parsing

This commit is contained in:
Luke Pulverenti 2016-12-07 15:03:00 -05:00
parent 835ed1dfae
commit dcb44815ed
9 changed files with 59 additions and 109 deletions

View file

@ -231,9 +231,9 @@
require(['actionsheet'], function (actionsheet) {
var card = $(elem).parents('.card');
var page = $(elem).parents('.page');
var id = card.attr('data-id');
var card = $(elem).parents('.card')[0];
var page = $(elem).parents('.page')[0];
var id = card.getAttribute('data-id');
actionsheet.show({
items: menuItems,