Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « deprecated_jquery_dropdown « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 90e7f15b5b7d9402475be54283c3b377a8820efd (plain)
1
2
3
4
5
6
7
8
9
10
11
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));
    }
  });
}