Commit a8074c98 authored by Lukas Eipert's avatar Lukas Eipert

Remove unused help page entry point

When we introduced (3d036617) the help entry point, it was likely to
render a list of icons within our documentation. We are not doing that,
so we can get rid of it.
parent 2c9210d6
// 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