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

index.js « clusters « groups « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d5ce5d076a2ae0e3c2e2d58a8dfbafe04c57bc87 (plain)
1
2
3
4
5
6
7
import initIntegrationForm from '~/clusters/forms/show/index';
import initCreateCluster from '~/create_cluster/init_create_cluster';

document.addEventListener('DOMContentLoaded', () => {
  initCreateCluster(document, gon);
  initIntegrationForm();
});