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.

8 lines
223 B
JavaScript
Raw Normal View History

2018-03-17 18:26:18 +05:30
import NewBranchForm from '~/new_branch_form';
2021-04-17 20:07:23 +05:30
// eslint-disable-next-line no-new
new NewBranchForm(
2022-08-13 15:12:31 +05:30
document.querySelector('.js-create-branch-form'),
2021-04-17 20:07:23 +05:30
JSON.parse(document.getElementById('availableRefs').innerHTML),
2018-12-13 13:39:08 +05:30
);