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

index.js « show « issues « projects « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: da312c1f1b7b43c5313c557ad91e18e3a3a471f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* eslint-disable no-new */

import initIssuableSidebar from '~/init_issuable_sidebar';
import Issue from '~/issue';
import ShortcutsIssuable from '~/shortcuts_issuable';
import ZenMode from '~/zen_mode';

document.addEventListener('DOMContentLoaded', () => {
  new Issue();
  new ShortcutsIssuable();
  new ZenMode();
  initIssuableSidebar();
});