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

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

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