Files
EasySoft-ZenTaoPMS/module/testcase/js/browse.js
T
2018-06-20 14:11:52 +08:00

23 lines
468 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);
if(flow == 'onlyTest')
{
$('#subNavbar > .nav > li[data-id=' + browseType + ']').addClass('active');
}
});