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: 5efcc901fde9c4e891e798ef8335ffb1764a2fbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import LineHighlighter from '~/line_highlighter';
import BlobViewer from '~/blob/viewer';
import ZenMode from '~/zen_mode';
import initNotes from '~/init_notes';
import snippetEmbed from '~/snippet/snippet_embed';

document.addEventListener('DOMContentLoaded', () => {
  if (!gon.features.snippetsVue) {
    new LineHighlighter(); // eslint-disable-line no-new
    new BlobViewer(); // eslint-disable-line no-new
    initNotes();
    new ZenMode(); // eslint-disable-line no-new
    snippetEmbed();
  }
});