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

Built from https://develop.svn.wordpress.org/trunk@25039


git-svn-id: http://core.svn.wordpress.org/trunk@25026 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Helen Hou-Sandí 2013-08-16 20:19:09 +00:00
parent 19e485ce42
commit 9adfd648a8
2 changed files with 5 additions and 1 deletions

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;

File diff suppressed because one or more lines are too long