Commit 4464c511 authored by Scott Hampton's avatar Scott Hampton

Merge branch 'jnnkl-remove-eventlistener-groups-admin-new' into 'master'

Remove obsolete DOMContentLoadedEventListener

See merge request gitlab-org/gitlab!56661
parents 4f641864 d6363364
...@@ -2,9 +2,9 @@ import initFilePickers from '~/file_pickers'; ...@@ -2,9 +2,9 @@ import initFilePickers from '~/file_pickers';
import BindInOut from '../../../../behaviors/bind_in_out'; import BindInOut from '../../../../behaviors/bind_in_out';
import Group from '../../../../group'; import Group from '../../../../group';
document.addEventListener('DOMContentLoaded', () => { (() => {
BindInOut.initAll(); BindInOut.initAll();
initFilePickers(); initFilePickers();
return new Group(); return new Group();
}); })();
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment