mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 04:34:59 +08:00
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);
|
|
},
|
|
}
|
|
});
|