I have (jade):
each category
  .item #{name}
and (coffee):
T.helpers
  category: ->
    Meteor.setTimeout (->
	Categories.find()
      ),500
Which should basically delay retrieval of Categories’ data by 500ms.
The prob is: meteor docs say that Meteor.setTimeout *Returns a handle (*which is not essentially a cursor…) that can be used by Meteor.clearTimeout. Thus producing {{#each}} currently only accepts arrays, cursors or falsey values. error in client console.
So how can I accomplish this trivial task?
