Skip to content

Instantly share code, notes, and snippets.

@aroman
Created January 4, 2014 05:32
Show Gist options
  • Save aroman/8252106 to your computer and use it in GitHub Desktop.
Save aroman/8252106 to your computer and use it in GitHub Desktop.
Template.quad.events({
'keydown input.add-task': function (e) {
if (e.keyCode == 13) {
Quads.update({_id: this._id}, {$push: {tasks: {"body": e.target.value}}});
$(e.target).focus(); // doesn't focus.
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment