Make sure quick edited non-alternate list table rows don't become alternate. props mordauk. fixes #24951.

git-svn-id: https://develop.svn.wordpress.org/trunk@25039 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Helen Hou-Sandi 2013-08-16 20:18:31 +00:00
parent 81248f6568
commit becf161fb8

View File

@ -258,6 +258,10 @@ inlineEditPost = {
} else {
$('#edit-'+id+' .inline-edit-save .error').html(inlineEditL10n.error).show();
}
if ( $('#post-'+id).prev().hasClass('alternate') ) {
$('#post-'+id).removeClass('alternate');
}
}
, 'html');
return false;