mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-06 10:50:56 +01:00
51a3623aed
git-svn-id: http://svn.automattic.com/wordpress/trunk@7082 1a063a9b-81f0-0310-95a4-ce76da25c4cd
39 lines
1.3 KiB
JavaScript
39 lines
1.3 KiB
JavaScript
var theList; var theExtraList;
|
|
jQuery(function($) {
|
|
|
|
var dimAfter = function( r, settings ) {
|
|
$('li span.comment-count').each( function() {
|
|
var a = $(this);
|
|
var n = parseInt(a.html(),10) + ( $('#' + settings.element).is('.' + settings.dimClass) ? 1 : -1 );
|
|
a.html( n.toString() );
|
|
});
|
|
// we need to do the opposite for this guy, TODO: update title
|
|
$('.post-com-count span.comment-count').each( function() {
|
|
var a = $(this);
|
|
var n = parseInt(a.html(),10) + ( $('#' + settings.element).is('.' + settings.dimClass) ? -1 : 1 );
|
|
a.html( n.toString() );
|
|
});
|
|
}
|
|
|
|
var delAfter = function( r, settings ) {
|
|
$('span.comment-count').each( function() {
|
|
var a = $(this);
|
|
if ( a.parent('.current').size() || $('#' + settings.element).is('.unapproved') && parseInt(a.html(),10) > 0 ) {
|
|
var n = parseInt(a.html(),10) - 1;
|
|
a.html( n.toString() );
|
|
}
|
|
});
|
|
|
|
if ( theExtraList.size() == 0 || theExtraList.children().size() == 0 ) {
|
|
return;
|
|
}
|
|
|
|
theList.get(0).wpList.add( theExtraList.children(':eq(0)').remove().clone() );
|
|
$('#get-extra-comments').submit();
|
|
}
|
|
|
|
theExtraList = $('#the-extra-comment-list').wpList( { alt: '', delColor: 'none', addColor: 'none' } );
|
|
theList = $('#the-comment-list').wpList( { alt: '', dimAfter: dimAfter, delAfter: delAfter, addColor: 'none' } );
|
|
|
|
} );
|