Show a space as thousands separator for comments count when setting from js, hide ajax throbber when QE returns an error, see#8227 fixes #8225

git-svn-id: https://develop.svn.wordpress.org/trunk@9726 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz
2008-11-15 21:58:51 +00:00
parent 24aed08de2
commit 647180ee18
4 changed files with 25 additions and 27 deletions
+12 -3
View File
@@ -17,8 +17,11 @@ setCommentsList = function() {
if ( isNaN(n) ) return;
n = n + ( $('#' + settings.element).is('.' + settings.dimClass) ? 1 : -1 );
if ( n < 0 ) { n = 0; }
a.html( n.toString() );
$('#awaiting-mod')[ 0 == n ? 'addClass' : 'removeClass' ]('count-0');
n = n.toString();
if ( n.length > 3 )
n = n.substr(0, n.length-3)+' '+n.substr(-3);
a.html(n);
});
};
@@ -34,8 +37,11 @@ setCommentsList = function() {
n = n + 1;
}
if ( n < 0 ) { n = 0; }
a.html( n.toString() );
$('#awaiting-mod')[ 0 == n ? 'addClass' : 'removeClass' ]('count-0');
n = n.toString();
if ( n.length > 3 )
n = n.substr(0, n.length-3)+' '+n.substr(-3);
a.html(n);
});
$('span.spam-count' ).each( function() {
@@ -49,7 +55,10 @@ setCommentsList = function() {
n = n - 1;
}
if ( n < 0 ) { n = 0; }
a.html( n.toString() );
n = n.toString();
if ( n.length > 3 )
n = n.substr(0, n.length-3)+' '+n.substr(-3);
a.html(n);
});
if ( theExtraList.size() == 0 || theExtraList.children().size() == 0 ) {