Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « browse « artifacts « projects « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
});