summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/projects/tree/show/index.js
blob: 78a4ea23f1ad12841bb8a6f39e49b1f6fce1fae4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import $ from 'jquery';
import initBlob from '~/blob_edit/blob_bundle';
import ShortcutsNavigation from '../../../../behaviors/shortcuts/shortcuts_navigation';
import NewCommitForm from '../../../../new_commit_form';
import initTree from 'ee_else_ce/repository';

document.addEventListener('DOMContentLoaded', () => {
  new ShortcutsNavigation(); // eslint-disable-line no-new
  new NewCommitForm($('.js-create-dir-form')); // eslint-disable-line no-new
  initBlob();
  initTree();
});