summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/projects/pipelines/new/index.js
blob: d5563143f0c06d03c580c251f6d2572a1e58f333 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import $ from 'jquery';
import NewBranchForm from '~/new_branch_form';
import setupNativeFormVariableList from '~/ci_variable_list/native_form_variable_list';
import initNewPipeline from '~/pipeline_new/index';

document.addEventListener('DOMContentLoaded', () => {
  const el = document.getElementById('js-new-pipeline');

  if (el) {
    initNewPipeline();
  } else {
    new NewBranchForm($('.js-new-pipeline-form')); // eslint-disable-line no-new

    setupNativeFormVariableList({
      container: $('.js-ci-variable-list-section'),
      formField: 'variables_attributes',
    });
  }
});