debian-mirror-gitlab/app/assets/javascripts/pages/projects/clusters/index/index.js
2021-01-03 14:25:43 +05:30

8 lines
312 B
JavaScript

import initClustersListApp from 'ee_else_ce/clusters_list';
import PersistentUserCallout from '~/persistent_user_callout';
document.addEventListener('DOMContentLoaded', () => {
const callout = document.querySelector('.gcp-signup-offer');
PersistentUserCallout.factory(callout);
initClustersListApp();
});