2018-03-17 18:26:18 +05:30
|
|
|
import GLForm from '~/gl_form';
|
2021-03-11 19:13:27 +05:30
|
|
|
import ZenMode from '~/zen_mode';
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2021-03-11 19:13:27 +05:30
|
|
|
export default function initProjectForm($formEl) {
|
2018-03-17 18:26:18 +05:30
|
|
|
new ZenMode(); // eslint-disable-line no-new
|
2018-11-08 19:23:39 +05:30
|
|
|
new GLForm($formEl); // eslint-disable-line no-new
|
2018-03-17 18:26:18 +05:30
|
|
|
}
|