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: c92958cd8c7902b810cd21ab726da19a29a0a89b (plain)
1
2
3
4
5
6
7
8
9
10
import { initShow } from '~/issues';
import { store } from '~/notes/stores';
import { initRelatedIssues } from '~/related_issues';
import initSidebarBundle from '~/sidebar/sidebar_bundle';
import initWorkItemLinks from '~/work_items/components/work_item_links';

initShow();
initSidebarBundle(store);
initRelatedIssues();
initWorkItemLinks();