29 lines
736 B
JavaScript
29 lines
736 B
JavaScript
$(function()
|
|
{
|
|
if(browseType != 'bysearch') $('#module' + param).closest('li').addClass('active');
|
|
if($('#bugList thead th.c-title').width() < 150) $('#bugList thead th.c-title').width(150);
|
|
|
|
$('#bugList').on('change', "[name='bugIDList[]']", checkClosed);
|
|
});
|
|
|
|
/**
|
|
* Closed bugs are not assignable.
|
|
*
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
function checkClosed()
|
|
{
|
|
var disabledAssigned = $('#bugList tr.checked .c-assignedTo a').length > 0 ? true : false;
|
|
$('#bugList tr.checked .c-assignedTo a').each(function()
|
|
{
|
|
if(!$(this).hasClass('disabled'))
|
|
{
|
|
disabledAssigned = false;
|
|
return false;
|
|
}
|
|
});
|
|
|
|
$('#mulAssigned').prop('disabled', disabledAssigned);
|
|
}
|