summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/help/help.js
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());
  }
};