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

index.js « new « 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: 53606acc508f0072897eb60a906371b170ab7776 (plain)
1
2
3
4
5
6
7
8
import $ from 'jquery';
import initSnippet from '~/snippet/snippet_bundle';
import initForm from '~/pages/projects/init_form';

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