Files
EasySoft-ZenTaoPMS/module/execution/js/task.js
2021-03-03 14:52:12 +08:00

17 lines
612 B
JavaScript

$(function()
{
if($('#taskList thead th.c-name').width() < 150) $('#taskList thead th.c-name').width(150);
$('#taskList td.has-child .task-toggle').each(function()
{
var $td = $(this).closest('td');
var labelWidth = 0;
if($td.find('.label').length > 0) labelWidth = $td.find('.label').width();
$td.find('a').eq(0).css('max-width', $td.width() - labelWidth - 60);
});
toggleFold('#projectTaskForm', unfoldTasks, executionID, 'project');
});
$('#module' + moduleID).closest('li').addClass('active');
$('#product' + productID).closest('li').addClass('active');