gitlab-org--gitlab-foss/app/assets/javascripts/deprecated_jquery_dropdown/index.js

12 lines
359 B
JavaScript

import $ from 'jquery';
import { GitLabDropdown } from './gl_dropdown';
export default function initDeprecatedJQueryDropdown($el, opts) {
// eslint-disable-next-line func-names
return $el.each(function () {
if (!$.data(this, 'deprecatedJQueryDropdown')) {
$.data(this, 'deprecatedJQueryDropdown', new GitLabDropdown(this, opts));
}
});
}