Commit 561d1e38 authored by Kushal Pandya's avatar Kushal Pandya

Merge branch 'leipert-remove-unnecessary-help-js' into 'master'

Remove unused help page entry point

See merge request gitlab-org/gitlab!61371
parents 6dc228cb a8074c98
// We will render the icons list here
import $ from 'jquery';
export default () => {
if ($('#user-content-gitlab-icons').length > 0) {
const $iconsHeader = $('#user-content-gitlab-icons');
const $iconsList = $('<div id="iconsList">ICONS</div>');
$($iconsList).insertAfter($iconsHeader.parent());
}
};
import initHelp from '~/help/help';
document.addEventListener('DOMContentLoaded', initHelp);
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