Added version select in session, removed get_profile_data_ignore_version, renamed scripts file

This commit is contained in:
2023-09-09 06:55:18 +09:00
parent d584b93ca5
commit ed46ea33e3
6 changed files with 52 additions and 32 deletions

View File

@ -0,0 +1,24 @@
function deleteRival(rivalUserId){
$(document).ready(function () {
$.post("/game/ongeki/rival.delete",
{
rivalUserId
},
function(data,status){
window.location.replace("/game/ongeki/")
})
});
}
function changeVersion(sel){
$(document).ready(function () {
$.post("/game/ongeki/version.change",
{
version: sel.value
},
function(data,status){
window.location.replace("/game/ongeki/")
})
});
}