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

snippet_show.js « snippet « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: caa76fc998854c867ab9ba0edf55c97075836d58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import initNotes from '~/init_notes';
import loadAwardsHandler from '~/awards_handler';
import SnippetsShow from '~/snippets/components/show.vue';
import SnippetsAppFactory from '~/snippets';
import ZenMode from '~/zen_mode';

SnippetsAppFactory(document.getElementById('js-snippet-view'), SnippetsShow);

initNotes();
loadAwardsHandler();

// eslint-disable-next-line no-new
new ZenMode();