Skip to content

Instantly share code, notes, and snippets.

@SachaG
Created September 5, 2012 04:48
Show Gist options
  • Save SachaG/3630665 to your computer and use it in GitHub Desktop.
Save SachaG/3630665 to your computer and use it in GitHub Desktop.
Template.post.events = {
'click input[type=submit]': function(e){
e.preventDefault();
var post = Posts.findOne(Session.get('selected_post_id'));
var $comment = $('#comment');
Meteor.call('comment', post, null, $comment.val());
$comment.val('');
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment