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

index.js « search « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 780d3ff0d253ece94abea8070151178aba1e4cb7 (plain)
1
2
3
4
5
6
7
8
9
import { queryToObject } from '~/lib/utils/url_utility';
import createStore from './store';
import initDropdownFilters from './dropdown_filter';

export default () => {
  const store = createStore({ query: queryToObject(window.location.search) });

  initDropdownFilters(store);
};