From ce74bfc81e781d0c587e883ad4d1ecd608d1094b Mon Sep 17 00:00:00 2001 From: rjy7 Date: Mon, 20 Sep 2010 20:11:51 +0000 Subject: [PATCH] Change sortable event that triggers author reordering from stop to update. --- productMods/edit/forms/js/addAuthorsToInformationResource.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/productMods/edit/forms/js/addAuthorsToInformationResource.js b/productMods/edit/forms/js/addAuthorsToInformationResource.js index a3f98b61..ec2313e5 100644 --- a/productMods/edit/forms/js/addAuthorsToInformationResource.js +++ b/productMods/edit/forms/js/addAuthorsToInformationResource.js @@ -314,7 +314,7 @@ var addAuthorForm = { authorshipList.sortable({ cursor: 'move', - stop: function(event, ui) { + update: function(event, ui) { addAuthorForm.reorderAuthors(event, ui); } });