diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-03-25 14:30:54 +0100 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-03-25 14:30:54 +0100 |
| commit | 0a1518defe0df10b7568c15871846075142b32d4 (patch) | |
| tree | aca59344df16ea7646392b334a0550644ae60b70 /index.html | |
| parent | f82096ce86b9532c1e0abe35a691db14e93a798e (diff) | |
| download | bridge-0a1518defe0df10b7568c15871846075142b32d4.tar.gz bridge-0a1518defe0df10b7568c15871846075142b32d4.zip | |
make found/not found prettier
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") ); }); |
