Bug 588875, clicking comment button focuses comment field

This commit is contained in:
Matt Claypotch 2010-08-23 00:54:40 -07:00
Родитель 62ac6542fb
Коммит 3f43372875
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -427,6 +427,7 @@ table.delegate(".remove", "click", function() {
.delegate(".comment", "click", function() {
var row = $(this).closest('tr');
row.find('.comments').show();
$('.comments textarea', row).focus();
});
})();