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

index.js « new « pipelines « projects « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9aa8945e268854e4831962e7e0a6be30f2dee82f (plain)
1
2
3
4
5
6
import $ from 'jquery';
import NewBranchForm from '~/new_branch_form';

document.addEventListener('DOMContentLoaded', () => {
  new NewBranchForm($('.js-new-pipeline-form')); // eslint-disable-line no-new
});