Skip to content

Instantly share code, notes, and snippets.

@Pent
Last active December 17, 2015 17:59
Show Gist options
  • Select an option

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

Select an option

Save Pent/5650336 to your computer and use it in GitHub Desktop.
Fade in the element when a new object is added to collection in Meteor
client.js ------
Template.message.rendered = function() {
$(this.find('div')).hide().fadeIn();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment