Skip to content

Instantly share code, notes, and snippets.

@danmcclain
Created November 20, 2015 17:12
Show Gist options
  • Save danmcclain/29ee04edc3bfc13e333d to your computer and use it in GitHub Desktop.
Save danmcclain/29ee04edc3bfc13e333d to your computer and use it in GitHub Desktop.
import Ember from 'ember';
export default Ember.Component.extend({
attributeBindings: ['type', 'value', 'checked', 'style', 'disabled'],
tagName: 'input',
classNames: ['checkbox__input'],
type: 'checkbox',
click: function(){
this.sendAction('action');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment