2017-09-22 04:39:47 -04:00
|
|
|
// We will render the icons list here
|
2018-03-09 15:18:59 -05:00
|
|
|
|
|
|
|
import $ from 'jquery';
|
|
|
|
|
2018-02-21 15:22:56 -05:00
|
|
|
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());
|
|
|
|
}
|
|
|
|
};
|