gitlab-org--gitlab-foss/app/assets/javascripts/snippet/snippet_show.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
422 B
JavaScript
Raw Normal View History

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();