debian-mirror-gitlab/app/assets/javascripts/pages/admin/clusters/show/index.js

10 lines
354 B
JavaScript
Raw Normal View History

2019-07-31 22:56:46 +05:30
import ClustersBundle from '~/clusters/clusters_bundle';
2020-07-28 23:09:34 +05:30
import initClusterHealth from '~/pages/projects/clusters/show/cluster_health';
2020-10-24 23:57:45 +05:30
import initIntegrationForm from '~/clusters/forms/show';
2019-07-31 22:56:46 +05:30
document.addEventListener('DOMContentLoaded', () => {
new ClustersBundle(); // eslint-disable-line no-new
2020-07-28 23:09:34 +05:30
initClusterHealth();
2020-10-24 23:57:45 +05:30
initIntegrationForm();
2019-07-31 22:56:46 +05:30
});