mirror of
https://github.com/status-im/consul.git
synced 2025-01-11 22:34:55 +00:00
7d89e519a2
UI to accompany the new ACLs APIs
18 lines
498 B
JavaScript
18 lines
498 B
JavaScript
import Component from '@ember/component';
|
|
import SlotsMixin from 'ember-block-slots';
|
|
import closest from 'consul-ui/utils/dom/closest';
|
|
import clickFirstAnchorFactory from 'consul-ui/utils/dom/click-first-anchor';
|
|
const clickFirstAnchor = clickFirstAnchorFactory(closest);
|
|
|
|
export default Component.extend(SlotsMixin, {
|
|
onchange: function() {},
|
|
actions: {
|
|
click: function(e) {
|
|
clickFirstAnchor(e);
|
|
},
|
|
change: function(item, e) {
|
|
this.onchange(e, item);
|
|
},
|
|
},
|
|
});
|