mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
Revert [7093]. Need a different method. see #6032
git-svn-id: http://svn.automattic.com/wordpress/trunk@7094 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c4bb6ba122
commit
09f33b6865
@ -216,7 +216,6 @@ 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;
|
||||
@ -248,14 +247,8 @@ 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', '' ); } } );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user