* finish task#1063.

This commit is contained in:
chencongzhi520@gmail.com
2013-01-05 02:04:58 +00:00
parent b1cccb035a
commit c3fd3b8c47
5 changed files with 13 additions and 16 deletions

View File

@@ -1,4 +0,0 @@
function setComment()
{
$('#comment').toggle();
}

View File

@@ -1,4 +0,0 @@
function setComment()
{
$('#comment').toggle();
}

View File

@@ -4,7 +4,3 @@ function assign(taskID, assignedTo)
$('.assign').height(40);
$('.assign').load(createLink('user', 'ajaxGetUser', 'taskID=' + taskID + '&assignedTo=' + assignedTo));
}
function setComment()
{
$('#comment').toggle();
}

View File

@@ -3,7 +3,3 @@ $(document).ready(function()
$(".runCase").colorbox({width:900, height:600, iframe:true, transition:'none'});
$(".results").colorbox({width:900, height:600, iframe:true, transition:'none'});
})
function setComment()
{
$('#comment').toggle();
}

View File

@@ -567,6 +567,19 @@ function setMailto(mailto, contactListID)
$('#' + mailto).val(users);
});
}
/**
* Set comment.
*
* @access public
* @return void
*/
function setComment()
{
$('#comment').toggle();
$('#comment textarea').focus();
}
/**
* Auto checked the checkbox of a row.
*