Rooms with new messages boldface in room list
authorArt Cancro <ajc@citadel.org>
Sun, 28 Apr 2019 21:57:43 +0000 (17:57 -0400)
committerArt Cancro <ajc@citadel.org>
Sun, 28 Apr 2019 21:57:43 +0000 (17:57 -0400)
webcit-ng/static/js/main.js

index cea3df2bde11240d943bb6378e203619aea66025..3c89914ac57b5d17a071a242eed388f9ded622fc 100644 (file)
@@ -151,8 +151,10 @@ function display_room_list_renderer(data) {
                }
                new_roomlist_text = new_roomlist_text +
                        "<li>"
+                       + (data[i].hasnewmsgs ? "<b>" : "")
                        + "<a href=\"javascript:gotoroom('" + escapeJS(escapeHTML(data[i].name)) + "');\">"
                        + escapeHTML(data[i].name)
+                       + (data[i].hasnewmsgs ? "</b>" : "")
                        + "</a></li>"
                ;
        }