Skip to content

Instantly share code, notes, and snippets.

@andrerfneves
Created April 3, 2015 22:00
Show Gist options
  • Save andrerfneves/e43dd92160c82f62fe64 to your computer and use it in GitHub Desktop.
Save andrerfneves/e43dd92160c82f62fe64 to your computer and use it in GitHub Desktop.
showSubmit.js
Template.showSubmit.events({
'submit form': function(e) {
e.preventDefault();
var show = {
url: $(e.target).find('[name=url]').val(),
title: $(e.target).find('[name=title]').val()
};
show._id = Shows.insert(show);
Router.go('/');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment