]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-content/plugins/akismet/akismet.js
Wordpress 3.1
[autoinstalls/wordpress.git] / wp-content / plugins / akismet / akismet.js
diff --git a/wp-content/plugins/akismet/akismet.js b/wp-content/plugins/akismet/akismet.js
new file mode 100644 (file)
index 0000000..3908935
--- /dev/null
@@ -0,0 +1,10 @@
+jQuery(document).ready(function () {
+       jQuery('.akismet-status').each(function () {
+               var thisId = jQuery(this).attr('commentid');
+               jQuery(this).prependTo('#comment-' + thisId + ' .column-comment div:first-child');
+       });
+       jQuery('.akismet-user-comment-count').each(function () {
+               var thisId = jQuery(this).attr('commentid');
+               jQuery(this).insertAfter('#comment-' + thisId + ' .author strong:first').show();
+       });
+});