Skip to content

Instantly share code, notes, and snippets.

@jrolfs
Created August 26, 2016 23:24
Show Gist options
  • Select an option

  • Save jrolfs/9cc442edb920f8981890816d0172f60c to your computer and use it in GitHub Desktop.

Select an option

Save jrolfs/9cc442edb920f8981890816d0172f60c to your computer and use it in GitHub Desktop.
getPostCount: ->
postCount = 0
@postsRegion.currentView.getCollection().each (post) ->
return if post.get('simulating_story')
replyCount = post.get('reply_count') || 0
postCount += 1 + replyCount
@_formatMaxCount(postCount)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment