6 lines
209 B
JavaScript
6 lines
209 B
JavaScript
import $ from 'jquery';
|
|
import NewBranchForm from '~/new_branch_form';
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
new NewBranchForm($('.js-new-pipeline-form')); // eslint-disable-line no-new
|
|
});
|