Skip to content

Instantly share code, notes, and snippets.

@TheEnigmaBlade
Last active August 29, 2015 14:12
Show Gist options
  • Save TheEnigmaBlade/6a3602ce2bcb6dea9b6c to your computer and use it in GitHub Desktop.
Save TheEnigmaBlade/6a3602ce2bcb6dea9b6c to your computer and use it in GitHub Desktop.
function unread_thing(e) {
var t = $(e);
t.hasClass("thing") || (t = t.thing()),
alterUnreadCount(1),
$(t).addClass("new unread")
}
function alterUnreadCount(e) {
var t = $(".message-count");
t.length > 0 && t.text(parseInt(t.text(), 10) + e)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment