2023-05-16 10:50:42 +08:00

11 lines
251 B
JavaScript

function showBugsBlock(bugs)
{
if(!bugs.length) return;
$('#reviewBugs').remove();
$.get(createLink('repo', 'ajaxGetBugs', 'repoID=' + repoID + '&bugList=' + bugs.join(',')), function(data)
{
$('body').append(data);
});
}