Skip to content
Snippets Groups Projects
Commit ae04c858 authored by Constance Okoghenun's avatar Constance Okoghenun
Browse files

refactored use of for projects:tree:*

parent 24fa3461
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -411,10 +411,9 @@ import { fetchCommitMergeRequests } from './commit_merge_requests';
break;
case 'projects:tree:show':
import('./pages/projects/tree/show')
.then((module) => {
shortcut_handler = module.default();
})
.then(callDefault)
.catch(fail);
shortcut_handler = true;
break;
case 'projects:find_file:show':
const findElement = document.querySelector('.js-file-finder');
Loading
Loading
Loading
Loading
@@ -5,12 +5,11 @@ import NewCommitForm from '../../../../new_commit_form';
import { ajaxGet } from '../../../../lib/utils/common_utils';
 
export default () => {
new ShortcutsNavigation(); // eslint-disable-line no-new
new TreeView(); // eslint-disable-line no-new
new BlobViewer(); // eslint-disable-line no-new
new NewCommitForm($('.js-create-dir-form')); // eslint-disable-line no-new
$('#tree-slider').waitForImages(() =>
ajaxGet(document.querySelector('.js-tree-content').dataset.logsPath));
return new ShortcutsNavigation(); // eslint-disable-line no-new
};
 
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment