Skip to content

Instantly share code, notes, and snippets.

@khepin
Created July 10, 2012 03:33
Show Gist options
  • Save khepin/3080813 to your computer and use it in GitHub Desktop.
Save khepin/3080813 to your computer and use it in GitHub Desktop.
Form.Views.SomeView = Backbone.View.extend({
events: {
'keypress input': 'submitIfPressedEnter'
},
/**
* Transforms an address to GPS coordinates
*/
submitIfPressedEnter: function(event){
if(event.keyCode !== 13){
return;
}
event.preventDefault();
// Handle form submission
return false;
},
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment