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

index.js « repositories « registry « groups « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cdafe8389940b1bbfe3ba7d0fd7d0b1142e1238b (plain)
1
2
3
4
5
6
7
8
9
10
import registryExplorer from '~/registry/explorer/index';

document.addEventListener('DOMContentLoaded', () => {
  const explorer = registryExplorer();

  if (explorer) {
    explorer.attachBreadcrumb();
    explorer.attachMainComponent();
  }
});