19 lines
305 B
JavaScript
19 lines
305 B
JavaScript
/**
|
|
* Set duplicate field.
|
|
*
|
|
* @param string $resolution
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
function setDuplicate(resolution, bugID)
|
|
{
|
|
if(resolution == 'duplicate')
|
|
{
|
|
$('#duplicateBugBox' + bugID).show();
|
|
}
|
|
else
|
|
{
|
|
$('#duplicateBugBox' + bugID).hide();
|
|
}
|
|
}
|