Co-Authored-By: Bianca Nenciu <nbianca@users.noreply.github.com> Co-Authored-By: David Taylor <david@taylorhq.com>
10 lines
164 B
JavaScript
10 lines
164 B
JavaScript
export default Ember.Component.extend({
|
|
classNameBindings: [":social-link"],
|
|
|
|
actions: {
|
|
share: function(source) {
|
|
this.action(source);
|
|
}
|
|
}
|
|
});
|