debian-mirror-gitlab/app/assets/javascripts/pages/projects/branches/new/index.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
260 B
JavaScript
Raw Normal View History

2018-03-17 18:26:18 +05:30
import NewBranchForm from '~/new_branch_form';
2023-03-04 22:38:38 +05:30
import initNewBranchRefSelector from '~/branches/init_new_branch_ref_selector';
2018-03-17 18:26:18 +05:30
2023-03-04 22:38:38 +05:30
initNewBranchRefSelector();
2021-04-17 20:07:23 +05:30
// eslint-disable-next-line no-new
2023-03-04 22:38:38 +05:30
new NewBranchForm(document.querySelector('.js-create-branch-form'));