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

index.js « new « tags « projects « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dacc2875c8cb00dac173255360023d45d0f1e698 (plain)
1
2
3
4
5
6
7
8
9
import RefSelectDropdown from '../../../../ref_select_dropdown';
import ZenMode from '../../../../zen_mode';
import GLForm from '../../../../gl_form';

export default () => {
  new ZenMode(); // eslint-disable-line no-new
  new GLForm($('.tag-form'), true); // eslint-disable-line no-new
  new RefSelectDropdown($('.js-branch-select')); // eslint-disable-line no-new
};