summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/projects/clusters/show/index.js
blob: 397f9faf6fec088256312b4034e7bc02593a2cfa (plain)
1
2
3
4
5
6
7
import ClustersBundle from '~/clusters/clusters_bundle';
import initGkeNamespace from '~/create_cluster/gke_cluster_namespace';

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