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

index.js « edit « snippets « projects « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c15f798b63005ca5037094a688f4240dd8519e97 (plain)
1
2
3
4
5
6
7
import initSnippet from '~/snippet/snippet_bundle';
import initForm from '~/pages/projects/init_form';

document.addEventListener('DOMContentLoaded', () => {
  initSnippet();
  initForm($('.snippet-form'));
});