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

help.js « help « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d02477b19a2fd040a37a2dc490054af6eec7847f (plain)
1
2
3
4
5
6
7
8
// We will render the icons list here
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());
  }
};