2018-03-17 18:26:18 +05:30
|
|
|
/* eslint-disable no-new */
|
2018-05-09 12:01:36 +05:30
|
|
|
|
|
|
|
import $ from 'jquery';
|
2018-03-17 18:26:18 +05:30
|
|
|
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();
|
|
|
|
};
|