2018-03-09 15:18:59 -05:00
|
|
|
import $ from 'jquery';
|
2020-08-25 20:10:31 -04:00
|
|
|
import { GitLabDropdown } from './gl_dropdown';
|
2017-03-11 02:30:44 -05:00
|
|
|
|
2020-08-24 14:10:19 -04:00
|
|
|
export default function initDeprecatedJQueryDropdown($el, opts) {
|
2020-01-29 07:09:08 -05:00
|
|
|
// eslint-disable-next-line func-names
|
2020-08-24 14:10:19 -04:00
|
|
|
return $el.each(function() {
|
|
|
|
if (!$.data(this, 'deprecatedJQueryDropdown')) {
|
|
|
|
$.data(this, 'deprecatedJQueryDropdown', new GitLabDropdown(this, opts));
|
2017-03-11 02:30:44 -05:00
|
|
|
}
|
|
|
|
});
|
2020-08-24 14:10:19 -04:00
|
|
|
}
|