summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/projects/issues/show.js
blob: ef65196872c651e769d4d3ef321fd35a1f198f86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import initIssuableSidebar from '~/init_issuable_sidebar';
import Issue from '~/issue';
import ShortcutsIssuable from '~/behaviors/shortcuts/shortcuts_issuable';
import ZenMode from '~/zen_mode';
import '~/notes/index';
import initIssueableApp from '~/issue_show';

export default function () {
  initIssueableApp();
  new Issue(); // eslint-disable-line no-new
  new ShortcutsIssuable(); // eslint-disable-line no-new
  new ZenMode(); // eslint-disable-line no-new
  initIssuableSidebar();
}