Skip to content

Instantly share code, notes, and snippets.

@tanema
Created August 24, 2012 03:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tanema/3445133 to your computer and use it in GitHub Desktop.
Save tanema/3445133 to your computer and use it in GitHub Desktop.
Ember trigerable text field so when enter button is pressed an action is called
ABApp.TriggerableTextField = Ember.TextField.extend(Ember.TargetActionSupport, {
insertNewline: function() {
this.triggerAction();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment