10 lines
179 B
JavaScript
10 lines
179 B
JavaScript
export default Ember.Component.extend({
|
|
classNameBindings: [':social-link'],
|
|
|
|
actions: {
|
|
share: function(source) {
|
|
this.sendAction('action', source);
|
|
},
|
|
}
|
|
});
|