18 lines
344 B
JavaScript
18 lines
344 B
JavaScript
/**
|
|
* Confirm batch delete cases.
|
|
*
|
|
* @param string $actionLink
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
function confirmBatchDelete(actionLink)
|
|
{
|
|
if(confirm(batchDelete)) setFormAction(actionLink);
|
|
return false;
|
|
}
|
|
|
|
$(function()
|
|
{
|
|
if($('#caseList thead th.c-title').width() < 150) $('#caseList thead th.c-title').width(150);
|
|
});
|