Fixed issue with playeroverlay

This commit is contained in:
Kasper Rynning-Tønnesen
2017-05-05 16:18:07 +02:00
parent aa1ca995f0
commit 7f09c1a999
5 changed files with 13 additions and 5 deletions

View File

@@ -2119,6 +2119,12 @@ nav ul li:hover, nav ul li.active {
transform: translateX(0%) !important;
}
#player_overlay {
height: calc(30vh);
bottom: -26px !important;
top: initial;
}
#wrapper{
min-height: 75px;
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -494,9 +494,11 @@ function setup_auth_listener() {
socket.on('auth_accepted', function(msg) {
if(msg.hasOwnProperty("value") && msg.value) {
if(temp_user_pass != "") {
userpass = temp_user_pass;
Crypt.set_userpass(chan.toLowerCase(), userpass);
}
}
});
}