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

index.js « metrics_and_profiling « application_settings « admin « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c40503603be51e9c17a5051b2d5502fe30be5c5a (plain)
1
2
3
4
5
6
7
8
import UsagePingPayload from './../usage_ping_payload';

document.addEventListener('DOMContentLoaded', () => {
  new UsagePingPayload(
    document.querySelector('.js-usage-ping-payload-trigger'),
    document.querySelector('.js-usage-ping-payload'),
  ).init();
});