summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/projects/artifacts/browse/index.js
blob: 58ba6a500a32bd21ee60bd40dc0a347ae2d1cddf (plain)
1
2
3
4
5
6
7
import ShortcutsNavigation from '~/behaviors/shortcuts/shortcuts_navigation';
import BuildArtifacts from '~/build_artifacts';

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