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: da20bd995e9aacf463fa5d66a33a8505dd862ba0 (plain)
1
2
3
4
5
import NewBranchForm from '~/new_branch_form';

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