debian-mirror-gitlab/app/assets/javascripts/droplab/hook.js
2018-03-17 18:26:18 +05:30

15 lines
340 B
JavaScript

import DropDown from './drop_down';
class Hook {
constructor(trigger, list, plugins, config) {
this.trigger = trigger;
this.list = new DropDown(list, config);
this.type = 'Hook';
this.event = 'click';
this.plugins = plugins || [];
this.config = config || {};
this.id = trigger.id;
}
}
export default Hook;