open-consul/ui-v2/app/components/state-chart/action/index.js

14 lines
353 B
JavaScript

import Component from '@ember/component';
export default Component.extend({
tagName: '',
didInsertElement: function() {
this._super(...arguments);
this.chart.addAction(this.name, (context, event) => this.exec(context, event));
},
willDestroy: function() {
this._super(...arguments);
this.chart.removeAction(this.type);
},
});