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

sidebar_bundle.js « sidebar « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 377846db70e367699055cd67bbb1b8bf8ecd05fd (plain)
1
2
3
4
5
6
7
8
9
import Mediator from './sidebar_mediator';
import { mountSidebar, getSidebarOptions } from './mount_sidebar';

export default () => {
  const mediator = new Mediator(getSidebarOptions());
  mediator.fetch();

  mountSidebar(mediator);
};