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

index.js « file « 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: 4cd67ac76e3b563a440b0732ae4e476e048351b8 (plain)
1
2
3
4
5
6
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
}