summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--index.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/index.html b/index.html
index c686910..7ab1345 100644
--- a/index.html
+++ b/index.html
@@ -48,14 +48,16 @@
socket.on("player processed", function(msg) {
$("#updates").append(
$("<li>")
- .text("processed player " + msg)
+ .text("processed player " + msg.id +
+ " (" + msg.name + ")")
.css("color", "green")
);
});
socket.on("player compiled", function(msg) {
$("#updates").append(
$("<li>")
- .text("compiled player " + msg)
+ .text("compiled player " + msg.id +
+ " (" + msg.name + ")")
.css("color", "orange")
);
});