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

index.js « ide « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: efadf6967aa9be0c40681e43236d940892053464 (plain)
1
2
3
4
5
6
7
8
9
import { initIde, resetServiceWorkersPublicPath } from '~/ide/index';

document.addEventListener('DOMContentLoaded', () => {
  const ideElement = document.getElementById('ide');
  if (ideElement) {
    resetServiceWorkersPublicPath();
    initIde(ideElement);
  }
});