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

9 lines
303 B
JavaScript
Raw Normal View History

2019-02-15 15:39:39 +05:30
import PersistentUserCallout from '~/persistent_user_callout';
2020-04-08 14:13:33 +05:30
import initClustersListApp from '~/clusters_list';
2019-02-15 15:39:39 +05:30
document.addEventListener('DOMContentLoaded', () => {
const callout = document.querySelector('.gcp-signup-offer');
2019-07-07 11:18:12 +05:30
PersistentUserCallout.factory(callout);
2020-04-08 14:13:33 +05:30
initClustersListApp();
2019-02-15 15:39:39 +05:30
});