made the search items not have text go out of the box
This commit is contained in:
parent
6ece2d3ea1
commit
7958b4e8bd
2 changed files with 5 additions and 0 deletions
|
|
@ -330,6 +330,7 @@ function checkWhatSongWasClicked(e) {
|
|||
submitSong(itemId);
|
||||
}
|
||||
}
|
||||
|
||||
function toggleDark(e) {
|
||||
let x = document.getElementById("test-body").classList
|
||||
if (!(x.contains("dark-mode"))) {
|
||||
|
|
@ -341,6 +342,7 @@ function toggleDark(e) {
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
function adminPassEnter(e) {
|
||||
if (e.key == "Enter") {
|
||||
e.preventDefault();
|
||||
|
|
@ -348,6 +350,7 @@ function adminPassEnter(e) {
|
|||
alertText("Admin Password Updated")
|
||||
}
|
||||
}
|
||||
|
||||
async function submitPerms(e) {
|
||||
let tempData = {}
|
||||
tempData["PP"] = document.getElementById("playpausesettingcheckbox").checked;
|
||||
|
|
@ -430,6 +433,7 @@ if (ip == null || ip=="") {
|
|||
if (ip==null || ip==""){
|
||||
ip = ""
|
||||
}
|
||||
// saving the cookies (don't tell the EU)
|
||||
document.cookie = "ip="+ip+"; path=/;"
|
||||
|
||||
alertTime = getCookie("alertTime")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue