2018-03-27 19:54:05 +05:30
|
|
|
import initIssuableSidebar from '~/init_issuable_sidebar';
|
|
|
|
import Issue from '~/issue';
|
|
|
|
import ShortcutsIssuable from '~/shortcuts_issuable';
|
|
|
|
import ZenMode from '~/zen_mode';
|
|
|
|
import '~/notes/index';
|
2018-11-08 19:23:39 +05:30
|
|
|
import initIssueableApp from '~/issue_show';
|
2018-03-27 19:54:05 +05:30
|
|
|
|
|
|
|
export default function () {
|
2018-11-08 19:23:39 +05:30
|
|
|
initIssueableApp();
|
2018-03-27 19:54:05 +05:30
|
|
|
new Issue(); // eslint-disable-line no-new
|
|
|
|
new ShortcutsIssuable(); // eslint-disable-line no-new
|
|
|
|
new ZenMode(); // eslint-disable-line no-new
|
|
|
|
initIssuableSidebar();
|
|
|
|
}
|