From: Art Cancro Date: Sun, 28 Apr 2019 21:57:43 +0000 (-0400) Subject: Rooms with new messages boldface in room list X-Git-Tag: v939~295 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=8a900b75c29b9d558f371105f4f65eb7758a594e Rooms with new messages boldface in room list --- diff --git a/webcit-ng/static/js/main.js b/webcit-ng/static/js/main.js index cea3df2bd..3c89914ac 100644 --- a/webcit-ng/static/js/main.js +++ b/webcit-ng/static/js/main.js @@ -151,8 +151,10 @@ function display_room_list_renderer(data) { } new_roomlist_text = new_roomlist_text + "
  • " + + (data[i].hasnewmsgs ? "" : "") + "" + escapeHTML(data[i].name) + + (data[i].hasnewmsgs ? "" : "") + "
  • " ; }