mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
Fixed issue with toasts comming in the background
This commit is contained in:
@@ -119,7 +119,7 @@ var Admin = {
|
||||
});
|
||||
}
|
||||
$("#password").val("");
|
||||
$("#password").attr("placeholder", "Change channel password");
|
||||
$("#password").attr("placeholder", "Change admin password");
|
||||
$(".user-password-li").removeClass("hide");
|
||||
if($(".password_protected").prop("checked")) {
|
||||
$(".change_user_pass").removeClass("hide");
|
||||
@@ -235,7 +235,7 @@ var Admin = {
|
||||
$('ul.playlist-tabs').tabs('select_tab', $(".playlist-tabs-loggedIn li a.active").attr("href").substring(1));
|
||||
}
|
||||
$("#admin-lock").removeClass("clickable");
|
||||
$("#password").attr("placeholder", "Enter channel password");
|
||||
$("#password").attr("placeholder", "Enter admin password");
|
||||
//$("#top-button").removeClass("top-button-with-tabs");
|
||||
},
|
||||
|
||||
@@ -274,7 +274,7 @@ var Admin = {
|
||||
$(".playlist-tabs-loggedIn").removeClass("hide");
|
||||
$(".playlist-tabs").addClass("hide");
|
||||
}
|
||||
$("#password").attr("placeholder", "Create channel password");
|
||||
$("#password").attr("placeholder", "Create admin password");
|
||||
} else {
|
||||
if($(".password_protected").prop("checked")) {
|
||||
$(".change_user_pass").removeClass("hide");
|
||||
|
||||
@@ -172,7 +172,7 @@ function init(){
|
||||
$('ul.playlist-tabs-loggedIn').tabs();
|
||||
$('ul.chatTabs').tabs();
|
||||
$("#settings").sideNav({
|
||||
menuWidth: 300, // Default is 240
|
||||
menuWidth: 310, // Default is 240
|
||||
edge: side, // Choose the horizontal origin
|
||||
closeOnClick: false // Closes side-nav on <a> clicks, useful for Angular/Meteor
|
||||
});
|
||||
@@ -1137,7 +1137,7 @@ $(document).off("keyup", "keyup.autocomplete", function(e){
|
||||
$(document).off("keydown", "keydown.autocomplete", function(e){
|
||||
if(e.keyCode == 13){
|
||||
e.preventDefault();
|
||||
|
||||
|
||||
}
|
||||
});*/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user