forked from rDrama/rDrama
1
0
Fork 0
rDrama/files/assets/js/submit_hats.js

25 lines
550 B
JavaScript
Raw Normal View History

function approve_hat(t, name) {
2023-09-17 20:29:24 +00:00
console.log(name)
2023-09-17 20:27:54 +00:00
console.log(`${name}-description`)
postToast(t, `/admin/approve/hat/${name}`,
{
"description": document.getElementById(`${name}-description`).value,
"name": document.getElementById(`${name}-name`).value,
"price": document.getElementById(`${name}-price`).value,
},
() => {
document.getElementById(`${name}-hat`).remove()
}
);
}
function remove_hat(t, name) {
postToast(t, `/remove/hat/${name}`,
{
},
() => {
document.getElementById(`${name}-hat`).remove()
}
);
}