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: 9f466e0d60a1268ed56346a4a87f46bc64e45459 (plain)
1
2
3
4
5
6
7
import initCreateCluster from '~/create_cluster/init_create_cluster';
import initIntegrationForm from '~/clusters/forms/show/index';

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