diff options
Diffstat (limited to 'js/main.js')
-rw-r--r-- | js/main.js | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/js/main.js b/js/main.js index b8b89cd9d..af63ac0ba 100644 --- a/js/main.js +++ b/js/main.js @@ -224,15 +224,15 @@ $.get(update_url,function(data) { in_progress = false; - $('.collapsed-comments',data).each(function() { - var ident = $(this).attr('id'); - var is_hidden = $('#' + ident).is(':hidden'); - if($('#' + ident).length) { - $('#' + ident).replaceWith($(this)); - if(is_hidden) - $('#' + ident).hide(); - } - }); + // $('.collapsed-comments',data).each(function() { + // var ident = $(this).attr('id'); + // var is_hidden = $('#' + ident).is(':hidden'); + // if($('#' + ident).length) { + // $('#' + ident).replaceWith($(this)); + // if(is_hidden) + // $('#' + ident).hide(); + // } + //}); $('.wall-item-outside-wrapper',data).each(function() { var ident = $(this).attr('id'); if($('#' + ident).length == 0) { |