Flash through red when sending an item to the trash, flash through green when undoing it, props caesarsgrunt, see #4529

git-svn-id: https://develop.svn.wordpress.org/trunk@12289 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz
2009-11-28 02:56:15 +00:00
parent bc19c30486
commit ed11892e7f
11 changed files with 19 additions and 15 deletions

View File

@@ -71,7 +71,7 @@ setCommentsList = function() {
a.click(function(){
list.wpList.del(this);
$('#undo-' + id).fadeOut(300, function(){
$('#undo-' + id).css( {backgroundColor:'#6c6'} ).fadeOut(300, function(){
$(this).remove();
$('#comment-' + id).css('backgroundColor', '').fadeIn(300, function(){ $(this).show() });
});