fix
This commit is contained in:
parent
ab18baca2c
commit
43efda7f68
|
@ -512,7 +512,7 @@ class ShowHiddenChannels {
|
||||||
if (channelList && category) {
|
if (channelList && category) {
|
||||||
category.remove();
|
category.remove();
|
||||||
let count = parseInt(channelList.lastChild.previousSibling.className.split("-")[1])+1;
|
let count = parseInt(channelList.lastChild.previousSibling.className.split("-")[1])+1;
|
||||||
category.attr("class", "container-" + count + " container-hidden");
|
category.className = "container-" + count + " container-hidden";
|
||||||
channelList.insertBefore(category,channelList.lastChild);
|
channelList.insertBefore(category,channelList.lastChild);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue