Skip to content

Instantly share code, notes, and snippets.

@johanhar
Created January 28, 2013 12:18
Show Gist options
  • Save johanhar/4655060 to your computer and use it in GitHub Desktop.
Save johanhar/4655060 to your computer and use it in GitHub Desktop.
template: something,
events: {
"click #foto-modal-produkt-lagre": "saveProdukt",
"click #foto-modal-produkt-avbryt": "close",
"click #foto-modal-produkt-slett": "deleteProdukt",
"keyup #produkt-edit-modal-template:input" : "inputPressed"
},
inputPressed: function(e) {
console.log("pressed") // never happens :(
if ((e.keyCode || e.which) == 13) {
this.saveProdukt()
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment