Commit dc6f5e98 authored by Nicolò Maria Mezzopera's avatar Nicolò Maria Mezzopera

Merge branch 'jnnkl-remove-eventlistener-users-index' into 'master'

Remove obsolete DOMContentLoadedEventListener

See merge request gitlab-org/gitlab!55622
parents e04d379e 651810f5
...@@ -15,9 +15,7 @@ function initUserProfile(action) { ...@@ -15,9 +15,7 @@ function initUserProfile(action) {
}); });
} }
document.addEventListener('DOMContentLoaded', () => { const page = $('body').attr('data-page');
const page = $('body').attr('data-page'); const action = page.split(':')[1];
const action = page.split(':')[1]; initUserProfile(action);
initUserProfile(action); new UserCallout(); // eslint-disable-line no-new
new UserCallout(); // eslint-disable-line no-new
});
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