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

index.js « index « badges « settings « projects « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 304695508662f38e665fcfe5bc67c6a3f7df3209 (plain)
1
2
3
4
5
6
7
8
9
10
import Vue from 'vue';
import Translate from '~/vue_shared/translate';
import { PROJECT_BADGE } from '~/badges/constants';
import mountBadgeSettings from '~/pages/shared/mount_badge_settings';

Vue.use(Translate);

document.addEventListener('DOMContentLoaded', () => {
  mountBadgeSettings(PROJECT_BADGE);
});