Spaces:
Running
Running
Commit ·
caf56ff
1
Parent(s): 90015aa
Pop
Browse files- ArkReCode/script.js +1 -1
ArkReCode/script.js
CHANGED
|
@@ -88,7 +88,7 @@ window.onload = () => {
|
|
| 88 |
sortedNames.forEach(name => {
|
| 89 |
if (!name.includes("Skill") && !name.includes("Sex")) {
|
| 90 |
const btn = document.createElement("button");
|
| 91 |
-
btn.textContent = name;
|
| 92 |
btn.className = "chara";
|
| 93 |
btn.onclick = function () {
|
| 94 |
playVideo(this);
|
|
|
|
| 88 |
sortedNames.forEach(name => {
|
| 89 |
if (!name.includes("Skill") && !name.includes("Sex")) {
|
| 90 |
const btn = document.createElement("button");
|
| 91 |
+
btn.textContent = name.split("-").pop();
|
| 92 |
btn.className = "chara";
|
| 93 |
btn.onclick = function () {
|
| 94 |
playVideo(this);
|