Spaces:
Running
Running
admin
commited on
Commit
·
b9d97cb
1
Parent(s):
508c4c7
fix idol pic num
Browse files- js/load.js +1 -1
js/load.js
CHANGED
@@ -19,7 +19,7 @@ function load() {
|
|
19 |
sound.attr("href", result.bgmurl);
|
20 |
sound.append(result.bgm);
|
21 |
$.each(result.pics, function (i, item) {
|
22 |
-
let desc = result.idol + (i + 1).toString();
|
23 |
let li = $("<li></li>");
|
24 |
let a = $("<a></a>");
|
25 |
a.attr("class", "perfundo__link");
|
|
|
19 |
sound.attr("href", result.bgmurl);
|
20 |
sound.append(result.bgm);
|
21 |
$.each(result.pics, function (i, item) {
|
22 |
+
let desc = result.idol + " " + (i + 1).toString();
|
23 |
let li = $("<li></li>");
|
24 |
let a = $("<a></a>");
|
25 |
a.attr("class", "perfundo__link");
|