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

10 lines
275 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-18 00:54:41 +05:30
import initAvatarPicker from '~/avatar_picker';
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-18 00:54:41 +05:30
initAvatarPicker();
2018-03-27 19:54:05 +05:30
});