This commit is contained in:
rjy7 2010-08-20 14:51:10 +00:00
parent d83460bd36
commit 8f6162218e
2 changed files with 7 additions and 2 deletions

View file

@ -10,7 +10,8 @@
} }
/* Use class dd rather than jQuery UI's class ui-sortable, so that we can remove /* Use class dd rather than jQuery UI's class ui-sortable, so that we can remove
* the class if there's fewer than one author. * the class if there's fewer than one author. We don't want to remove the ui-sortable
* class, in case we want to re-enable DD without a page reload.
*/ */
#authorships.dd li { #authorships.dd li {
padding-left: 1em; padding-left: 1em;

View file

@ -655,10 +655,14 @@ var addAuthorForm = {
// Disable DD and associated cues if only one author remains // Disable DD and associated cues if only one author remains
disableAuthorDD: function() { disableAuthorDD: function() {
var authorships = $('#authorships'), var authorships = $('#authorships'),
authorship = $('.authorship'),
authorNameWrapper = $('.authorNameWrapper'); authorNameWrapper = $('.authorNameWrapper');
authorships.sortable({ disable: true } ); authorships.sortable({ disable: true } );
// Use class dd rather than jQuery UI's class ui-sortable, so that we can remove
// the class if there's fewer than one author. We don't want to remove the ui-sortable
// class, in case we want to re-enable DD without a page reload (e.g., if implementing
// adding an author via Ajax request).
authorships.removeClass('dd'); authorships.removeClass('dd');
authorNameWrapper.removeAttr('title'); authorNameWrapper.removeAttr('title');