Skip to content

Commit

Permalink
fix id problem
Browse files Browse the repository at this point in the history
  • Loading branch information
inada-s committed Nov 9, 2019
1 parent 138492a commit 319b4b7
Show file tree
Hide file tree
Showing 4 changed files with 146 additions and 442 deletions.
2 changes: 1 addition & 1 deletion assets/login.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!--<CSV>
"OK",
"{{.LoginKey}}",
"{{.SessionId}}",
"{{.SessionID}}",
"https://www01.kddi-mmbb.jp/00000020/login",
"https://www01.kddi-mmbb.jp/00000020/CRS-top.jsp",
</CSV>
Expand Down
4 changes: 2 additions & 2 deletions assets/status.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ body { padding-top: 70px; }
</thead>
<tbody>
{{range .LobbyUsers}}
<tr><td>【{{.UserId}}】</td><td>{{.Name}}</td><td>{{.Team}}</td><td>{{.UDP}}</td></tr>
<tr><td>【{{.UserID}}】</td><td>{{.Name}}</td><td>{{.Team}}</td><td>{{.UDP}}</td></tr>
{{end}}
</tbody>
</table>
Expand All @@ -80,7 +80,7 @@ body { padding-top: 70px; }
</thead>
<tbody>
{{range .BattleUsers}}
<tr><td>【{{.UserId}}】</td><td>{{.Name}}</td><td>{{.Team}}</td><td>{{.UDP}}</td></tr>
<tr><td>【{{.UserID}}】</td><td>{{.Name}}</td><td>{{.Team}}</td><td>{{.UDP}}</td></tr>
{{end}}
</tbody>
</table>
Expand Down
580 changes: 142 additions & 438 deletions pkg/assets/assets.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ <h3>初回起動時の注意(Windows)</h3>
for (var i = 0; i < u.length; i++) {
var r = t.insertRow(-1);
var uid = r.insertCell(0)
uid.innerHTML = "【" + u[i].UserId+ "】"
uid.innerHTML = "【" + u[i].UserID+ "】"
uid.className = "z-user-id"
var uname = r.insertCell(1)
uname.innerHTML = u[i].Name
Expand Down

0 comments on commit 319b4b7

Please sign in to comment.