update data

This commit is contained in:
Vick Scarlet
2021-09-09 10:24:46 +08:00
parent 20288a686b
commit 3a9149e9a4
10 changed files with 361 additions and 57 deletions

View File

@@ -485,9 +485,9 @@ class App{
Object
.values(this.#specialthanks)
.sort(()=>0.5-Math.random())
.forEach(({group, name, comment})=>groups[--group].append(`
.forEach(({group, name, comment, color})=>groups[--group].append(`
<li>
<span class="name">${name}</span>
<span class="name" ${color?('style="color:'+color+'"'):''}>${name}</span>
<span class="comment">${comment||''}</span>
</li>
`))