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: 630add51a97484ba765d88a0fda0a12307a3c700 (plain)
1
2
3
4
5
6
7
8
9
import initSidebarBundle from '~/sidebar/sidebar_bundle';
import initRelatedIssues from '~/related_issues';
import initShow from '../show';

initShow();
if (gon.features && !gon.features.vueIssuableSidebar) {
  initSidebarBundle();
}
initRelatedIssues();