Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2018-02-02 21:09:10 +0300
committerMike Greiling <mike@pixelcog.com>2018-02-02 21:09:10 +0300
commit65407c3878159add9113010046b55068261fec10 (patch)
treec8e7fb65a7f2a279cd7ef0efc2c80dc0ba9fad06 /app/assets/javascripts/pages/groups/show
parented29be1b685d1fd0ace744ec5f2dd1f09b7eb0be (diff)
migrate groups:show to static bundle
Diffstat (limited to 'app/assets/javascripts/pages/groups/show')
-rw-r--r--app/assets/javascripts/pages/groups/show/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/pages/groups/show/index.js b/app/assets/javascripts/pages/groups/show/index.js
index 6ed0f010f15..5c763986da3 100644
--- a/app/assets/javascripts/pages/groups/show/index.js
+++ b/app/assets/javascripts/pages/groups/show/index.js
@@ -7,7 +7,7 @@ import ProjectsList from '~/projects_list';
import ShortcutsNavigation from '~/shortcuts_navigation';
import initGroupsList from '../../../groups';
-export default () => {
+document.addEventListener('DOMContentLoaded', () => {
const newGroupChildWrapper = document.querySelector('.js-new-project-subgroup');
new ShortcutsNavigation();
new NotificationsForm();
@@ -19,4 +19,4 @@ export default () => {
}
initGroupsList();
-};
+});