Skip to content

Instantly share code, notes, and snippets.

@aaronthorp
Created March 24, 2014 04:51
Show Gist options
  • Save aaronthorp/9734349 to your computer and use it in GitHub Desktop.
Save aaronthorp/9734349 to your computer and use it in GitHub Desktop.
Template.request_reply.events = {
'click #response_sendButton': function() {
sendRequestResponse();
},
'keypress #response_response': function(e,t) {
if (e.charCode === 13)
sendRequestResponse();
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment