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: a341ef9656d2240bde44c97016e5d440d493f093 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import initFilePickers from '~/file_pickers';
import BindInOut from '~/behaviors/bind_in_out';
import Group from '~/group';
import { initGroupNameAndPath } from '~/groups/create_edit_form';

(() => {
  BindInOut.initAll();
  initFilePickers();

  return new Group();
})();

initGroupNameAndPath();