掲示板のリンクにする

This commit is contained in:
yuuki 2024-05-23 06:07:08 +00:00
parent 6b88dd923e
commit 686bb7209f

View File

@ -77,7 +77,7 @@ class SongSelect{
border: ["#ffd54f", "#ff9800"], border: ["#ffd54f", "#ff9800"],
outline: "#ffab40", outline: "#ffab40",
}, },
"homepage": { "keijiban": {
sort: 0, sort: 0,
background: "#1c1c1c", background: "#1c1c1c",
border: ["#000000", "#333333"], border: ["#000000", "#333333"],
@ -216,9 +216,9 @@ class SongSelect{
}); });
// } // }
this.songs.push({ this.songs.push({
title: "ホームページ", title: "掲示板",
skin: this.songSkin.homepage, skin: this.songSkin.keijiban,
action: "homepage", action: "keijiban",
}); });
this.songs.push({ this.songs.push({
@ -865,10 +865,10 @@ class SongSelect{
setTimeout(() => { setTimeout(() => {
window.location.href = "/upload/"; window.location.href = "/upload/";
}, 100); }, 100);
} else if (currentSong.action === "homepage") { } else if (currentSong.action === "keijiban") {
this.playSound("se_don"); this.playSound("se_don");
setTimeout(() => { setTimeout(() => {
window.location.href = "https://homepage-zeta-two.vercel.app/"; window.location.href = "https://litey.trade/";
}, 100); }, 100);
} }
} }