Bug 609435, disable remove links when only one author is listed

This commit is contained in:
Matt Claypotch 2010-11-07 22:19:15 -08:00
Родитель 73a0db0081
Коммит bf41afcb07
1 изменённых файлов: 6 добавлений и 1 удалений

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

@ -439,14 +439,19 @@ function initAuthorFields() {
} else {
row.remove();
manager.val(author_list.children(".author").length);
renumberAuthors();
}
renumberAuthors();
}
});
function renumberAuthors() {
author_list.children(".author").each(function(i, el) {
$(this).find(".position input").val(i);
});
if ($(".author:visible").length > 1) {
$(".author .remove").show();
} else {
$(".author .remove").hide();
}
}
function addAuthorRow() {
var numForms = author_list.children(".author").length;