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: 8b52958589865a1e763ff8dcab72d5bad04666c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
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

  Milestone.initDeprecationMessage();
});