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

index.js « projects « admin « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 31c96eb87aff1a6beb4cc726ac52d8d9e7dd3007 (plain)
1
2
3
4
5
6
7
8
9
import ProjectsList from '../../../projects_list';
import NamespaceSelect from '../../../namespace_select';

document.addEventListener('DOMContentLoaded', () => {
  new ProjectsList(); // eslint-disable-line no-new

  document.querySelectorAll('.js-namespace-select')
    .forEach(dropdown => new NamespaceSelect({ dropdown }));
});