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

index.js « show « ci_cd « settings « groups « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f26c7360fbe02619fc3420e11cd7b4c2914e6dfc (plain)
1
2
3
4
5
6
7
8
9
10
11
import SecretValues from '~/behaviors/secret_values';

export default () => {
  const secretVariableTable = document.querySelector('.js-secret-variable-table');
  if (secretVariableTable) {
    const secretVariableTableValues = new SecretValues({
      container: secretVariableTable,
    });
    secretVariableTableValues.init();
  }
};