Skip to content

Instantly share code, notes, and snippets.

@kingluddite
Created May 12, 2014 00:28
Show Gist options
  • Save kingluddite/8445dc73bd5c41f5b129 to your computer and use it in GitHub Desktop.
Save kingluddite/8445dc73bd5c41f5b129 to your computer and use it in GitHub Desktop.
Template.ProjectForm.events({
'click .save':function(evt, tmpl) {
var name = tmpl.find('.name').value;
var client = tmpl.find('.client').value;
alert(name + ' ' + client);
},
'click .cancel': function(evt, tmpl) {
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment