mirror of
https://github.com/KevinMidboe/zoff.git
synced 2026-01-07 01:55:34 +00:00
Fixed issue with playeroverlay
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
2
server/public/assets/dist/embed.min.js
vendored
2
server/public/assets/dist/embed.min.js
vendored
File diff suppressed because one or more lines are too long
2
server/public/assets/dist/main.min.js
vendored
2
server/public/assets/dist/main.min.js
vendored
File diff suppressed because one or more lines are too long
@@ -314,7 +314,7 @@ var Admin = {
|
||||
voting: voting, addsongs: addsongs, longsongs: longsongs, frontpage: frontpage, allvideos: allvideos, removeplay: removeplay, adminpass: adminpass, skipping: skipping, shuffling: shuffling, userpass: pass_send, userpass_changed: userpass_changed
|
||||
};
|
||||
|
||||
Crypt.set_userpass(chan.toLowerCase(), CryptoJS.SHA256(userpass).toString());
|
||||
Crypt.set_userpass(chan.toLowerCase(), CryptoJS.SHA256(userpass).toString());
|
||||
socket.emit("conf", configs);
|
||||
},
|
||||
|
||||
|
||||
@@ -494,8 +494,10 @@ function setup_auth_listener() {
|
||||
|
||||
socket.on('auth_accepted', function(msg) {
|
||||
if(msg.hasOwnProperty("value") && msg.value) {
|
||||
userpass = temp_user_pass;
|
||||
Crypt.set_userpass(chan.toLowerCase(), userpass);
|
||||
if(temp_user_pass != "") {
|
||||
userpass = temp_user_pass;
|
||||
Crypt.set_userpass(chan.toLowerCase(), userpass);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user