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

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

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

export default mountSearchSettings;