From 9f57568f8f97cffb5bf0f4a5967a9a62df89641e Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Thu, 28 Feb 2008 21:51:57 +0000 Subject: [PATCH] Fade approved comments from moderated list. Props filosofo. fixes #6032 git-svn-id: https://develop.svn.wordpress.org/trunk@7093 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/js/wp-lists.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/wp-includes/js/wp-lists.js b/wp-includes/js/wp-lists.js index bbff26c516..5eeeae0e39 100644 --- a/wp-includes/js/wp-lists.js +++ b/wp-includes/js/wp-lists.js @@ -216,6 +216,7 @@ var wpList = { ajaxDim: function( e, s ) { var list = this; e = $(e); s = s || {}; var cls = wpList.parseClass(e,'dim'); + var hide = ( 'moderated' == $('input[name="comment_status"]').val() ) ? true : false; s = wpList.pre.call( list, e, s, 'dim' ); s.element = cls[2] || s.element || null; @@ -247,8 +248,14 @@ var wpList = { element.toggleClass( s.dimClass ) var dimColor = isClass ? s.dimAddColor : s.dimDelColor; if ( 'none' != dimColor ) { + if ( hide ) { + var anim = 'slideUp'; + if ( element.css( 'display' ).match(/table/) ) + anim = 'fadeOut'; // Can't slideup table rows and other table elements. Known jQuery bug + element.animate( { backgroundColor: dimColor }, 'fast' )[anim]( 'fast' ) + } else + element.animate( { backgroundColor: dimColor }, 'fast' ) element - .animate( { backgroundColor: dimColor }, 'fast' ) .queue( function() { element.toggleClass(s.dimClass); $(this).dequeue(); } ) .animate( { backgroundColor: color }, { complete: function() { $(this).css( 'backgroundColor', '' ); } } ); }