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

index.js « show « clusters « projects « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a05ea8ae8459d85ba10450e43e33ce2e7a86c664 (plain)
1
2
3
4
5
6
7
8
9
10
11
import ClustersBundle from '~/clusters/clusters_bundle';
import initGkeNamespace from '~/create_cluster/gke_cluster_namespace';
import initClusterHealth from './cluster_health';
import initIntegrationForm from '~/clusters/forms/show';

document.addEventListener('DOMContentLoaded', () => {
  new ClustersBundle(); // eslint-disable-line no-new
  initGkeNamespace();
  initClusterHealth();
  initIntegrationForm();
});