Skip to content

Instantly share code, notes, and snippets.

@Pent
Created May 25, 2013 18:27
Show Gist options
  • Select an option

  • Save Pent/5650187 to your computer and use it in GitHub Desktop.

Select an option

Save Pent/5650187 to your computer and use it in GitHub Desktop.
when new record is added to collection, do something (in this case: scroll the page)
Meteor.subscribe('messages', function() {
return Messages.find().observe({
added: function() {
scrollToBottom();
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment