14 lines
326 B
JavaScript
14 lines
326 B
JavaScript
import Ember from 'ember';
|
|
|
|
export default Ember.Component.extend(Ember.SortableMixin, {
|
|
tagName: 'table',
|
|
classNames: ['flakes-table'],
|
|
sortProperties: [],
|
|
|
|
actions: {
|
|
sortBy: function(property, ascending) {
|
|
this.set('sortAscending', ascending);
|
|
this.set('sortProperties', [property]);
|
|
}
|
|
},
|
|
});
|