From c130a48d89e28138cf3ede6dd3e4fa460f71d839 Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Mon, 6 Feb 2012 16:16:31 +0100 Subject: [PATCH] Text contrast adjustment for chat time --- static/js/chat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/chat.js b/static/js/chat.js index e094f93d..9f0903cf 100644 --- a/static/js/chat.js +++ b/static/js/chat.js @@ -106,7 +106,7 @@ var chat = (function() var authorName = msg.userName == null ? "unnamed" : padutils.escapeHtml(msg.userName); - var html = "

" + authorName + ":" + timeStr + " " + text + "

"; + var html = "

" + authorName + ":" + timeStr + " " + text + "

"; $("#chattext").append(html); //should we increment the counter??