All files / app/assets/javascripts/deprecated_jquery_dropdown index.js

100% Statements 5/5
50% Branches 1/2
100% Functions 2/2
100% Lines 5/5

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15          69x 60x 60x   60x 60x        
import $ from 'jquery';
import { GitLabDropdown } from './gl_dropdown';
 
export default function initDeprecatedJQueryDropdown($el, opts) {
  // eslint-disable-next-line func-names
  return $el.each(function () {
    Eif (!$.data(this, 'deprecatedJQueryDropdown')) {
      const instance = new GitLabDropdown(this, opts);
 
      $.data(this, 'deprecatedJQueryDropdown', instance);
      this.GitLabDropdownInstance = instance;
    }
  });
}