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

9 lines
312 B
JavaScript
Raw Normal View History

2021-01-03 14:25:43 +05:30
import initClustersListApp from 'ee_else_ce/clusters_list';
2019-02-15 15:39:39 +05:30
import PersistentUserCallout from '~/persistent_user_callout';
2018-03-17 18:26:18 +05:30
2018-03-27 19:54:05 +05:30
document.addEventListener('DOMContentLoaded', () => {
2019-02-15 15:39:39 +05:30
const callout = document.querySelector('.gcp-signup-offer');
2019-05-18 00:54:41 +05:30
PersistentUserCallout.factory(callout);
2020-04-08 14:13:33 +05:30
initClustersListApp();
2018-03-27 19:54:05 +05:30
});