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

index.js « general « application_settings « admin « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: af1595398a8d51312901773804d54f3bf9288a75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import Vue from 'vue';
import initUserInternalRegexPlaceholder from '../account_and_limits';
import IntegrationHelpText from '~/vue_shared/components/integrations_help_text.vue';

document.addEventListener('DOMContentLoaded', () => {
  initUserInternalRegexPlaceholder();

  const gitpodSettingEl = document.querySelector('#js-gitpod-settings-help-text');
  if (!gitpodSettingEl) {
    return;
  }

  // eslint-disable-next-line no-new
  new Vue({
    el: gitpodSettingEl,
    name: 'GitpodSettings',
    components: {
      IntegrationHelpText,
    },
  });
});