1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/web/ synced 2025-03-16 00:00:03 +01:00
VILLASweb/app/components/property-table.js
2015-10-13 14:12:34 +02:00

12 lines
227 B
JavaScript

import Ember from 'ember';
export default Ember.Component.extend({
tagName: 'table',
classNames: ['data-table'],
actions: {
propertyClicked(property) {
this.sendAction('showProperty', property);
}
}
});