summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/projects/artifacts/file/index.js
blob: 249900d6cb7789856078709c5a187732e8c1108c (plain)
1
2
3
4
5
6
7
import BlobViewer from '~/blob/viewer/index';
import ShortcutsNavigation from '~/behaviors/shortcuts/shortcuts_navigation';

document.addEventListener('DOMContentLoaded', () => {
  new ShortcutsNavigation(); // eslint-disable-line no-new
  new BlobViewer(); // eslint-disable-line no-new
});