summaryrefslogtreecommitdiffstats
path: root/js/scores.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/scores.js')
-rw-r--r--js/scores.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/js/scores.js b/js/scores.js
index 161f1ae..3fba599 100644
--- a/js/scores.js
+++ b/js/scores.js
@@ -120,6 +120,7 @@ function scoresFormatPage(JO) {
p = p+"<th>Rank</th>";
p = p+"<th style='width:125px; overflow:hidden; text-align:left; padding-left:42px;'>Name</th>";
p = p+"<th>Moves</th>";
+ p = p+"<th>Points</th>";
p = p+"</tr>";
var showedLastUser = true;
@@ -179,6 +180,9 @@ function scoresFormatPage(JO) {
p = p+ "<span class='scoreName'><a href='achievements?id="+u.ID+"' style='color:"+u.displayColor+"'>"+u.display+"</a></span>";
p = p+ "</td>";
p = p+ "<td style='text-align:right;'>"+u.moves+"</td>";
+ if (u.solution) {
+ p += "<td>"+u.points+"</td>";
+ }
p = p+ "</tr>";
previousI = i;