空文字でリセットできるようにする

This commit is contained in:
yuuki
2024-12-09 13:50:10 +09:00
parent 43185bab5f
commit 168772b195

View File

@@ -933,7 +933,7 @@ class SongSelect{
if (input === null) { if (input === null) {
// キャンセル // キャンセル
} else if (input === "") { } else if (input === "") {
input = "1"; baisoku = "1";
} else { } else {
baisoku = input; baisoku = input;
} }
@@ -947,7 +947,7 @@ class SongSelect{
if (input === null) { if (input === null) {
// キャンセル // キャンセル
} else if (input === "") { } else if (input === "") {
input = "false"; doron = "false";
} else { } else {
doron = input; doron = input;
} }
@@ -961,7 +961,7 @@ class SongSelect{
if (input === null) { if (input === null) {
// キャンセル // キャンセル
} else if (input === "") { } else if (input === "") {
input = "false"; abekobe = "false";
} else { } else {
abekobe = input; abekobe = input;
} }
@@ -975,7 +975,7 @@ class SongSelect{
if (input === null) { if (input === null) {
// キャンセル // キャンセル
} else if (input === "") { } else if (input === "") {
input = "0"; detarame = "0";
} else { } else {
detarame = input; detarame = input;
} }