User Interfaces

This is the comment thread for an article in the Meteor Guide.

Read the article: http://guide.meteor.com/ui-ux.html

The comment thread for each article appears at the very bottom of the page. Use this thread to post:

  1. Interesting articles related to the content
  2. New ways to do things that aren’t covered in the Guide
  3. Suggestions for Guide improvements

Or anything else related to this topic that people could find useful!

3 Likes

I noticed Lists.todoCount in the example is written by leverageing another package tmeasday:publish-counts. Lists cursor will not have todoCount information so I’d like to know how to do Lists.todoCount without using any other package?

I think i got answer from http://stackoverflow.com/a/10566873/1233018
Basically we need to create a temporary collection and that collection only contain _id and count.
But I have a question regarding above link. @sashko
Why we dont need if (!initializing){} for observeChanges.removed function?

1 Like

@sashko I have a question regarding above link.
Why we dont need if (!initializing){} for observeChanges.removed function?