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

index.js « abuse_reports « admin « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d97e24d9e0b2bc9443589275f18af053a294306a (plain)
1
2
3
4
5
6
7
8
/* eslint-disable no-new */
import AbuseReports from './abuse_reports';
import UsersSelect from '~/users_select';

document.addEventListener('DOMContentLoaded', () => {
  new AbuseReports();
  new UsersSelect();
});