Files
EasySoft-ZenTaoPMS/module/testreport/js/create.js
2019-07-04 16:33:13 +08:00

14 lines
398 B
JavaScript

$(function()
{
if(objectType == 'project') $('#subNavbar ul li[data-id=qa]').addClass('active');
$('#mainContent .main-header h2 #selectTask').change(function()
{
var taskID = $(this).val();
if(taskID)
{
location.href = createLink('testreport', 'create', 'objectID=' + taskID + '&objectType=testtask');
return false;
}
});
})