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

index.js « show « search « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b6171e08e0185de566353c77d6482d2e45ae6aeb (plain)
1
2
3
4
5
6
7
import Search from './search';
import { initSearchApp } from '~/search';

document.addEventListener('DOMContentLoaded', () => {
  initSearchApp(); // Vue Bootstrap
  return new Search(); // Legacy Search Methods
});