11 lines
251 B
JavaScript
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);
|
|
});
|
|
}
|