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

index.js « show « snippets « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 04c9562bfbb85cc3b1340114dc22b30e669f639d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* eslint-disable no-new */
import LineHighlighter from '../../../line_highlighter';
import BlobViewer from '../../../blob/viewer';
import ZenMode from '../../../zen_mode';
import initNotes from '../../../init_notes';

export default () => {
  new LineHighlighter();
  new BlobViewer();
  initNotes();
  new ZenMode();
};