debian-mirror-gitlab/app/assets/javascripts/subscription_select.js

27 lines
650 B
JavaScript
Raw Normal View History

2018-05-09 12:01:36 +05:30
import $ from 'jquery';
2018-03-17 18:26:18 +05:30
export default function subscriptionSelect() {
$('.js-subscription-event').each((i, element) => {
2018-03-27 19:54:05 +05:30
const fieldName = $(element).data('fieldName');
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
return $(element).glDropdown({
selectable: true,
fieldName,
toggleLabel(selected, el, instance) {
let label = 'Subscription';
const $item = instance.dropdown.find('.is-active');
if ($item.length) {
label = $item.text();
2017-09-10 17:25:29 +05:30
}
2018-03-17 18:26:18 +05:30
return label;
},
clicked(options) {
return options.e.preventDefault();
},
id(obj, el) {
return $(el).data('id');
},
2017-09-10 17:25:29 +05:30
});
2018-03-17 18:26:18 +05:30
});
2017-09-10 17:25:29 +05:30
}