Skip to content

Instantly share code, notes, and snippets.

@tanema
Created August 24, 2012 03:27
Show Gist options
  • Select an option

  • Save tanema/3445133 to your computer and use it in GitHub Desktop.

Select an option

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