debian-mirror-gitlab/app/assets/javascripts/help/help.js

12 lines
319 B
JavaScript
Raw Normal View History

2018-03-17 18:26:18 +05:30
// We will render the icons list here
2018-05-09 12:01:36 +05:30
import $ from 'jquery';
2018-03-27 19:54:05 +05:30
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());
}
};