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: 764c23e9a9944b2d7722cd027ecc3c51c1a77513 (plain)
1
2
3
4
5
6
7
import GLForm from '~/gl_form';
import ZenMode from '~/zen_mode';

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