diff options
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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") ); }); |
