This commit is contained in:
Aevann1 2021-10-01 05:41:08 +02:00
parent 35a6da0a8d
commit 26d5bcfd79
2 changed files with 1 additions and 79 deletions

View file

@ -0,0 +1,11 @@
function awardModal(link) {
var target = document.getElementById("awardTarget");
target.action = link;
}
function bruh(kind) {
document.getElementById('giveaward').disabled=false;
document.getElementById('kind').value=kind;
try {document.getElementsByClassName('picked')[0].classList.toggle('picked');} catch(e) {}
document.getElementById(kind).classList.toggle('picked')
}