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: f5333042bb89237c436682a957e4b60f6ea8c33e (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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());
  }
};