Skip to content

Instantly share code, notes, and snippets.

@eddiewang
Created June 18, 2015 20:28
Show Gist options
  • Save eddiewang/31381d063fbcd78b13a1 to your computer and use it in GitHub Desktop.
Save eddiewang/31381d063fbcd78b13a1 to your computer and use it in GitHub Desktop.
Router.route('/video/:_id', {
name: 'Test',
waitOn: function() {
return Meteor.subscribe('videos', this.params._id);
},
data: function() {
return Videos.findOne(this.params._id);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment