2017-01-10 18:02:20 -05:00
|
|
|
/* eslint-disable func-names, space-before-function-paren, wrap-iife, no-var, quotes, object-shorthand, no-unused-vars, no-shadow, one-var, one-var-declaration-per-line, comma-dangle, max-len */
|
2016-07-24 16:45:11 -04:00
|
|
|
(function() {
|
|
|
|
this.IssueStatusSelect = (function() {
|
|
|
|
function IssueStatusSelect() {
|
|
|
|
$('.js-issue-status').each(function(i, el) {
|
|
|
|
var fieldName;
|
|
|
|
fieldName = $(el).data("field-name");
|
|
|
|
return $(el).glDropdown({
|
|
|
|
selectable: true,
|
|
|
|
fieldName: fieldName,
|
|
|
|
toggleLabel: (function(_this) {
|
|
|
|
return function(selected, el, instance) {
|
|
|
|
var $item, label;
|
|
|
|
label = 'Author';
|
|
|
|
$item = instance.dropdown.find('.is-active');
|
|
|
|
if ($item.length) {
|
|
|
|
label = $item.text();
|
|
|
|
}
|
|
|
|
return label;
|
|
|
|
};
|
|
|
|
})(this),
|
2017-05-04 08:11:15 -04:00
|
|
|
clicked: function(options) {
|
|
|
|
return options.e.preventDefault();
|
2016-07-24 16:45:11 -04:00
|
|
|
},
|
|
|
|
id: function(obj, el) {
|
|
|
|
return $(el).data("id");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return IssueStatusSelect;
|
|
|
|
})();
|
2017-02-10 01:50:50 -05:00
|
|
|
}).call(window);
|