mirror of
https://gitea.tendokyu.moe/Hay1tsme/artemis.git
synced 2026-02-07 16:17:32 +08:00
13 lines
266 B
JavaScript
13 lines
266 B
JavaScript
function deleteRival(rivalUserId){
|
|
|
|
$(document).ready(function () {
|
|
$.post("/game/ongeki/rival.delete",
|
|
{
|
|
rivalUserId
|
|
},
|
|
function(data,status){
|
|
window.location.replace("/game/ongeki/")
|
|
})
|
|
});
|
|
}
|