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: 5649c47d7e879ba13093846cc4bf09cfb105e482 (plain)
1
2
3
4
5
6
7
8
/* eslint-disable no-new */
import UsersSelect from '~/users_select';
import AbuseReports from './abuse_reports';

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