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

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

document.addEventListener('DOMContentLoaded', () => (
  new NewBranchForm($('.js-create-branch-form'), JSON.parse(document.getElementById('availableRefs').innerHTML))
));