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: 21efc4f6d00f6ef8e561aaf518e2b3964c579182 (plain)
1
2
3
4
5
6
7
import PersistentUserCallout from '~/persistent_user_callout';

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

  if (callout) new PersistentUserCallout(callout); // eslint-disable-line no-new
});