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: 21f1ce222ac9ca4cf317ede7fe0c0abeaa199cbc (plain)
1
2
3
4
5
6
7
8
9
import BindInOut from '../../../../behaviors/bind_in_out';
import Group from '../../../../group';
import groupAvatar from '../../../../group_avatar';

document.addEventListener('DOMContentLoaded', () => {
  BindInOut.initAll();
  new Group(); // eslint-disable-line no-new
  groupAvatar();
});