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

async_edit.js « wikis « shared « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4536a076568f13366d7852c6fa30b89d6097c952 (plain)
1
2
3
4
5
6
7
8
9
10
11
export const mountApplications = async () => {
  const el = document.querySelector('.js-wiki-edit-page');

  if (el) {
    const { mountApplications: mountEditApplications } = await import(
      /* webpackChunkName: 'wiki_edit' */ './edit'
    );

    mountEditApplications();
  }
};