13 lines
264 B
JavaScript
13 lines
264 B
JavaScript
import Ember from 'ember';
|
|
|
|
export default Ember.Component.extend({
|
|
tagName: 'th',
|
|
upArrow: '▲',
|
|
downArrow: '▼',
|
|
|
|
actions: {
|
|
sortBy: function(sortProperty, ascending) {
|
|
this.sendAction('action', sortProperty, ascending);
|
|
}
|
|
},
|
|
});
|