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