fix bug where the style changing errored
This commit is contained in:
parent
4583793131
commit
d0f9928936
@ -89,11 +89,11 @@ async function bioChanger() {
|
|||||||
if(document.getElementById("bio").disabled) {
|
if(document.getElementById("bio").disabled) {
|
||||||
let response = await sendBio(document.getElementById("bio").value)
|
let response = await sendBio(document.getElementById("bio").value)
|
||||||
console.log(response);
|
console.log(response);
|
||||||
document.querySelector('style').innerHTML = '::placeholder {color: white;} #bio {border: 0px solid black; color:white;}'
|
document.getElementById("userstyle").innerHTML = '::placeholder {color: white;} #bio {border: 0px solid black; color:white;}'
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
document.querySelector('style').innerHTML = '::placeholder {color: white;} #bio {border: 2px solid gray; color:white;}'
|
document.getElementById("userstyle").innerHTML = '::placeholder {color: white;} #bio {border: 2px solid gray; color:white;}'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user