Stop hiding the UI if the playlist is visible

This commit is contained in:
Erik Thuning 2022-02-21 17:54:46 +01:00
parent 06a5b7110e
commit 6588386571

@ -284,6 +284,9 @@ function setupHiding(body, mainstream) {
var about = document.querySelector('#about')
function hide() {
if(about.classList.contains('expand')) {
return
}
if(!body.classList.contains(selector)) {
body.classList.add(selector)
}