function updateReadState(target, isRead) {
$(target).closest("tr")
.toggleClass("inbox-row", isRead)
- .toggleClass("inbox-row-unread", !isRead);
+ .toggleClass("inbox-row-unread", !isRead)
+ .find(".inbox-mark-unread").prop("hidden", !isRead).end()
+ .find(".inbox-mark-read").prop("hidden", isRead);
}
});