Slight UI tweaks to authors form (new h3, cursor type and removed link to individuals) NIHVIVO-646

This commit is contained in:
nac26 2010-07-13 14:13:19 +00:00
parent c6fe94442e
commit 1a14ffba90
2 changed files with 9 additions and 2 deletions

View file

@ -276,7 +276,12 @@ var addAuthorForm = {
$(this).attr('title', 'Drag and drop to reorder authors');
});
$('.authorLinkWrapper,#authorships.dd li, a.authorLink').hover(function() {
$(this).css('cursor','move');
})
authorshipList.sortable({
cursor: 'move',
stop: function(event, ui) {
addAuthorForm.reorderAuthors(event, ui);
}