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

revert channelmappers back

This commit is contained in:
grafixeyehero 2019-10-17 00:06:32 +03:00
parent c7284dba87
commit 9954eec88d

View file

@ -3,8 +3,9 @@ define(["dialogHelper", "loading", "connectionManager", "globalize", "actionshee
return function (options) {
function parentWithClass(elem, className) {
for (; !elem.classList || !elem.classList.contains(className);) {
if (!(elem = elem.parentNode)) {
while (!elem.classList || !elem.classList.contains(className)) {
elem = elem.parentNode;
if (!elem) {
return null;
}
}