Commit 9afa9b8d authored by Filipa Lacerda's avatar Filipa Lacerda

Enable eslint

parent 1c978aff
/* eslint-disable func-names,wrap-iife, no-shadow, no-unused-vars, one-var */
export default function issueStatusSelect() {
$('.js-issue-status').each(function (i, el) {
$('.js-issue-status').each((i, el) => {
const fieldName = $(el).data('field-name');
return $(el).glDropdown({
selectable: true,
fieldName,
toggleLabel: (function (_this) {
return function (selected, el, instance) {
let label = 'Author';
const $item = instance.dropdown.find('.is-active');
if ($item.length) {
label = $item.text();
}
return label;
};
})(this),
toggleLabel(selected, element, instance) {
let label = 'Author';
const $item = instance.dropdown.find('.is-active');
if ($item.length) {
label = $item.text();
}
return label;
},
clicked(options) {
return options.e.preventDefault();
},
id(obj, el) {
return $(el).data('id');
id(obj, element) {
return $(element).data('id');
},
});
});
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment