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

index.js « new « groups « admin « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b94c999ed1295fcf951ccae152be138b0d8c664d (plain)
1
2
3
4
5
6
7
8
9
10
import BindInOut from '../../../../behaviors/bind_in_out';
import Group from '../../../../group';
import initFilePickers from '~/file_pickers';

document.addEventListener('DOMContentLoaded', () => {
  BindInOut.initAll();
  initFilePickers();

  return new Group();
});