summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/index.html b/index.html
index b97d287..9caa10f 100644
--- a/index.html
+++ b/index.html
@@ -19,7 +19,7 @@
$.get("/api/player/name/" + name).done(function() {
$("#updates").append(
$("<li>")
- .text("(found)")
+ .text(name + ": found")
.css("color", "black")
);
/* subscribe to socket notifications */
@@ -49,7 +49,7 @@
}).fail(function() {
$("#updates").append(
$("<li>")
- .text("(not found)")
+ .text(name + ": not found")
.css("color", "red")
);
});