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

index.js « show « operations « settings « projects « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1b9ec44ed4a869433a5749087166359fc387c745 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import mountErrorTrackingForm from '~/error_tracking_settings';
import mountAlertsSettings from '~/alerts_settings';
import mountOperationSettings from '~/operation_settings';
import mountGrafanaIntegration from '~/grafana_integration';
import initSettingsPanels from '~/settings_panels';
import initIncidentsSettings from '~/incidents_settings';

document.addEventListener('DOMContentLoaded', () => {
  initIncidentsSettings();
  mountErrorTrackingForm();
  mountOperationSettings();
  mountGrafanaIntegration();
  if (!IS_EE) {
    initSettingsPanels();
  }
  mountAlertsSettings(document.querySelector('.js-alerts-settings'));
});