UI Changes

This commit is contained in:
Henry Wang
2017-02-24 01:17:49 -06:00
parent 6e9377387d
commit 4a0bd33a44
4 changed files with 17 additions and 8 deletions

View File

@@ -446,7 +446,7 @@ $(function() {
var barOffset;
ctx.fillStyle = "white";
ctx.font = "24px Arial";
ctx.font = "24px Changa";
barOffset = ctx.measureText(user.name).width + 10;
ctx.fillText(user.name, 5, CELL_WIDTH - 5);
@@ -462,7 +462,7 @@ $(function() {
//Percentage
ctx.fillStyle = "white";
ctx.font = "18px Arial";
ctx.font = "18px Changa";
ctx.fillText((lagPortion * 100).toFixed(3) + "%", 5 + barOffset, CELL_WIDTH - 5);
if (user.dead && !showedDead)