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

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

initDeprecatedNotes();
loadAwardsHandler();

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