Text contrast adjustment for chat time
This commit is contained in:
parent
9e769571fa
commit
c130a48d89
|
@ -106,7 +106,7 @@ var chat = (function()
|
||||||
|
|
||||||
var authorName = msg.userName == null ? "unnamed" : padutils.escapeHtml(msg.userName);
|
var authorName = msg.userName == null ? "unnamed" : padutils.escapeHtml(msg.userName);
|
||||||
|
|
||||||
var html = "<p class='" + authorClass + "'><b>" + authorName + ":</b><span class='time'>" + timeStr + "</span> " + text + "</p>";
|
var html = "<p class='" + authorClass + "'><b>" + authorName + ":</b><span class='time " + authorClass + "'>" + timeStr + "</span> " + text + "</p>";
|
||||||
$("#chattext").append(html);
|
$("#chattext").append(html);
|
||||||
|
|
||||||
//should we increment the counter??
|
//should we increment the counter??
|
||||||
|
|
Loading…
Reference in New Issue