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: 22dffa90cef07804b6fad5d7a4b3b43ed2d1dbb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import loadAwardsHandler from '~/awards_handler';
import initNotes from '~/init_notes';
import SnippetsAppFactory from '~/snippets';
import SnippetsShow from '~/snippets/components/show.vue';
import ZenMode from '~/zen_mode';

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

initNotes();
loadAwardsHandler();

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