git-svn-id: https://192.168.0.254/svn/Proyectos.OriginalHouse_Web/trunk@1 54e8636e-a86c-764f-903d-b964358a1ae2
11 lines
417 B
JavaScript
11 lines
417 B
JavaScript
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();
|
|
});
|
|
});
|