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

index.js « show « milestones « dashboard « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 397149aaa9e14058f8b71f53a99bdde95b092c71 (plain)
1
2
3
4
5
6
7
8
9
import Milestone from '~/milestone';
import Sidebar from '~/right_sidebar';
import MountMilestoneSidebar from '~/sidebar/mount_milestone_sidebar';

document.addEventListener('DOMContentLoaded', () => {
  new Milestone(); // eslint-disable-line no-new
  new Sidebar(); // eslint-disable-line no-new
  new MountMilestoneSidebar(); // eslint-disable-line no-new
});