Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « index « clusters « groups « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a99e0dfa4f0f857a7ac9c0672048c433a925dc84 (plain)
1
2
3
4
5
6
7
8
import initClustersListApp from '~/clusters_list';
import PersistentUserCallout from '~/persistent_user_callout';

document.addEventListener('DOMContentLoaded', () => {
  const callout = document.querySelector('.gcp-signup-offer');
  PersistentUserCallout.factory(callout);
  initClustersListApp();
});