BigW Consortium Gitlab

form.js 551 Bytes
Newer Older
Simon Knox committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* eslint-disable no-new */
import GLForm from '~/gl_form';
import IssuableForm from '~/issuable_form';
import LabelsSelect from '~/labels_select';
import MilestoneSelect from '~/milestone_select';
import ShortcutsNavigation from '~/shortcuts_navigation';
import IssuableTemplateSelectors from '~/templates/issuable_template_selectors';

export default () => {
  new ShortcutsNavigation();
  new GLForm($('.issue-form'), true);
  new IssuableForm($('.issue-form'));
  new LabelsSelect();
  new MilestoneSelect();
  new IssuableTemplateSelectors();
};