Finishes dispatcher projects:a*
stuff.
This commit is contained in:
parent
a9a858e020
commit
3ef346bce9
3 changed files with 22 additions and 5 deletions
|
@ -12,7 +12,6 @@ import notificationsDropdown from './notifications_dropdown';
|
|||
import groupAvatar from './group_avatar';
|
||||
import GroupLabelSubscription from './group_label_subscription';
|
||||
import LineHighlighter from './line_highlighter';
|
||||
import BuildArtifacts from './build_artifacts';
|
||||
import CILintEditor from './ci_lint_editor';
|
||||
import groupsSelect from './groups_select';
|
||||
import Search from './search';
|
||||
|
@ -506,12 +505,16 @@ import Activities from './activities';
|
|||
.catch(() => {});
|
||||
break;
|
||||
case 'projects:artifacts:browse':
|
||||
new ShortcutsNavigation();
|
||||
new BuildArtifacts();
|
||||
import('./pages/projects/artifacts/browse')
|
||||
.then(callDefault)
|
||||
.catch(fail);
|
||||
shortcut_handler = true;
|
||||
break;
|
||||
case 'projects:artifacts:file':
|
||||
new ShortcutsNavigation();
|
||||
new BlobViewer();
|
||||
import('./pages/projects/artifacts/file')
|
||||
.then(callDefault)
|
||||
.catch(fail);
|
||||
shortcut_handler = true;
|
||||
break;
|
||||
case 'help:index':
|
||||
VersionCheckImage.bindErrorEvent($('img.js-version-status-badge'));
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
import BuildArtifacts from '~/build_artifacts';
|
||||
import ShortcutsNavigation from '~/shortcuts_navigation';
|
||||
|
||||
export default function () {
|
||||
new ShortcutsNavigation(); // eslint-disable-line no-new
|
||||
new BuildArtifacts(); // eslint-disable-line no-new
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
import BlobViewer from '~/blob/viewer/index';
|
||||
import ShortcutsNavigation from '~/shortcuts_navigation';
|
||||
|
||||
export default function () {
|
||||
new ShortcutsNavigation(); // eslint-disable-line no-new
|
||||
new BlobViewer(); // eslint-disable-line no-new
|
||||
}
|
Loading…
Reference in a new issue