]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-content/plugins/akismet/akismet.js
WordPress 3.3.2
[autoinstalls/wordpress.git] / wp-content / plugins / akismet / akismet.js
1 jQuery(document).ready(function () {
2         jQuery('.akismet-status').each(function () {
3                 var thisId = jQuery(this).attr('commentid');
4                 jQuery(this).prependTo('#comment-' + thisId + ' .column-comment div:first-child');
5         });
6         jQuery('.akismet-user-comment-count').each(function () {
7                 var thisId = jQuery(this).attr('commentid');
8                 jQuery(this).insertAfter('#comment-' + thisId + ' .author strong:first').show();
9         });
10 });