2018-05-09 12:01:36 +05:30
|
|
|
import $ from 'jquery';
|
2020-10-24 23:57:45 +05:30
|
|
|
import initTree from 'ee_else_ce/repository';
|
2018-03-27 19:54:05 +05:30
|
|
|
import initBlob from '~/blob_edit/blob_bundle';
|
2018-12-05 23:21:45 +05:30
|
|
|
import ShortcutsNavigation from '../../../../behaviors/shortcuts/shortcuts_navigation';
|
2018-03-17 18:26:18 +05:30
|
|
|
import NewCommitForm from '../../../../new_commit_form';
|
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
new NewCommitForm($('.js-create-dir-form')); // eslint-disable-line no-new
|
|
|
|
initBlob();
|
|
|
|
initTree();
|
|
|
|
new ShortcutsNavigation(); // eslint-disable-line no-new
|