2018-05-09 12:01:36 +05:30
|
|
|
import $ from 'jquery';
|
2018-03-27 19:54:05 +05:30
|
|
|
import NewBranchForm from '~/new_branch_form';
|
2018-10-15 14:42:47 +05:30
|
|
|
import setupNativeFormVariableList from '~/ci_variable_list/native_form_variable_list';
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
2018-03-17 18:26:18 +05:30
|
|
|
new NewBranchForm($('.js-new-pipeline-form')); // eslint-disable-line no-new
|
2018-10-15 14:42:47 +05:30
|
|
|
|
|
|
|
setupNativeFormVariableList({
|
|
|
|
container: $('.js-ci-variable-list-section'),
|
|
|
|
formField: 'variables_attributes',
|
|
|
|
});
|
2018-03-27 19:54:05 +05:30
|
|
|
});
|