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

init_form.js « projects « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9f20a3e4e46985648ddb694f2558a3bd19a1f593 (plain)
1
2
3
4
5
6
7
import ZenMode from '~/zen_mode';
import GLForm from '~/gl_form';

export default function ($formEl) {
  new ZenMode(); // eslint-disable-line no-new
  new GLForm($formEl); // eslint-disable-line no-new
}