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

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