mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-01 15:50:11 -04:00
Multiplied visible scores by 100 for more awesome.
This commit is contained in:
parent
0c45b6c0e3
commit
0c4a2a2f2b
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ div#columns.row
|
|||
for session in team.leaderboard.topPlayers.models
|
||||
- var myRow = session.get('creator') == me.id
|
||||
tr(class=myRow ? "success" : "")
|
||||
td.score-cell= session.get('totalScore').toFixed(2)
|
||||
td.score-cell= Math.round(session.get('totalScore') * 100)
|
||||
td.name-col-cell= session.get('creatorName') || "Anonymous"
|
||||
td
|
||||
a(href="/play/level/#{level.get('slug') || level.id}/?team=#{team.otherTeam}&opponent=#{session.id}")
|
||||
|
|
Loading…
Add table
Reference in a new issue