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: 019efe077f70c92a90a4b1845f7d5d4e02861e4e (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
}