Change sortable event that triggers author reordering from stop to update.

This commit is contained in:
rjy7 2010-09-20 20:11:51 +00:00
parent b01dbf2d54
commit ce74bfc81e

View file

@ -314,7 +314,7 @@ var addAuthorForm = {
authorshipList.sortable({ authorshipList.sortable({
cursor: 'move', cursor: 'move',
stop: function(event, ui) { update: function(event, ui) {
addAuthorForm.reorderAuthors(event, ui); addAuthorForm.reorderAuthors(event, ui);
} }
}); });