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: 47fea2be189363c1d791aa4d9dec4190f59d4d73 (plain)
1
2
3
4
5
6
7
8
9
import initRegistryImages from '~/registry/list/index';
import registryExplorer from '~/registry/explorer/index';

document.addEventListener('DOMContentLoaded', () => {
  initRegistryImages();
  const { attachMainComponent, attachBreadcrumb } = registryExplorer();
  attachBreadcrumb();
  attachMainComponent();
});