debian-mirror-gitlab/app/assets/javascripts/pages/groups/new/index.js

10 lines
264 B
JavaScript
Raw Normal View History

2018-03-17 18:26:18 +05:30
import BindInOut from '~/behaviors/bind_in_out';
import Group from '~/group';
2019-05-30 16:15:17 +05:30
import groupAvatar from '~/group_avatar';
2018-03-17 18:26:18 +05:30
2018-03-27 19:54:05 +05:30
document.addEventListener('DOMContentLoaded', () => {
2018-03-17 18:26:18 +05:30
BindInOut.initAll();
new Group(); // eslint-disable-line no-new
2019-05-30 16:15:17 +05:30
groupAvatar();
2018-03-27 19:54:05 +05:30
});