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: 92d01343bd52f74ebbf769bd08a92738a5cc317e (plain)
1
2
3
4
5
6
7
import Search from './search';
import initStateFilter from '~/search/state_filter';

document.addEventListener('DOMContentLoaded', () => {
  initStateFilter();
  return new Search();
});