Files
EasySoft-ZenTaoPMS/module/project/js/task.js
T
2019-12-12 14:36:18 +08:00

13 lines
439 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()
{
$td = $(this).closest('td');
$td.find('a').eq(0).css('max-width', $td.width() - $td.find('.label').width() - 40);
});
});
$('#module' + moduleID).closest('li').addClass('active');
$('#product' + productID).closest('li').addClass('active');