Files
EasySoft-ZenTaoPMS/module/testcase/js/browse.js
T
2018-05-25 14:40:49 +08:00

27 lines
644 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')
{
toggleSearch();
$('.export').modalTrigger({width:650, type:'iframe', afterShown: setCheckedCookie})
$('#subNavbar > .nav > li').removeClass('active');
$('#subNavbar > .nav > li[data-id=' + browseType + ']').addClass('active');
}
});