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

index.js « search_settings « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 676c43c5631348a57d8553fef8410099985fe94e (plain)
1
2
3
4
5
6
7
8
9
10
const initSearch = async () => {
  const el = document.querySelector('.js-search-settings-app');

  if (el) {
    const { default: mount } = await import(/* webpackChunkName: 'search_settings' */ './mount');
    mount({ el });
  }
};

export default initSearch;