6 lines
257 B
JavaScript
6 lines
257 B
JavaScript
// We will render the icons list here
|
|
if ($('#user-content-gitlab-icons').length > 0) {
|
|
const $iconsHeader = $('#user-content-gitlab-icons');
|
|
const $iconsList = $('<div id="iconsList">ICONS</div>');
|
|
$($iconsList).insertAfter($iconsHeader.parent());
|
|
}
|