Put time and name in bold in the chat

It's easier to distinguish the text like this
master
Daniel Berteaud 11 years ago
parent 1fe47a461f
commit 146b126bc7
  1. 2
      public/js/vroom.js

@ -665,7 +665,7 @@ function initVroom(room) {
var displayName = from;
}
// Create the new msg
var newmsg = $('<div class="chatMsg ' + cl + '">' + time + ' ' + stringEscape(displayName) + '<p>' + linkify(stringEscape(message)) + '</p></div>').css('background-color', color);
var newmsg = $('<div class="chatMsg ' + cl + '"><b>' + time + ' ' + stringEscape(displayName) + '</b><p>' + linkify(stringEscape(message)) + '</p></div>').css('background-color', color);
// Add it in the history
$('<div class="row chatMsgContainer"></div>').append(newmsg).appendTo('#chatHistory');
// Move the scroller down

Loading…
Cancel
Save