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

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

export default () => {
  new GLForm($('.snippet-form'), false); // eslint-disable-line no-new
  new ZenMode(); // eslint-disable-line no-new
};